@zohodesk/library-platform 1.2.0 → 1.2.2-exp.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.
Files changed (26) hide show
  1. package/es/cc/table-connected/SdkContract.js +28 -3
  2. package/es/cc/table-list/Properties.js +9 -8
  3. package/es/cc/table-list/row/Properties.js +19 -6
  4. package/es/index.js +6 -2
  5. package/es/library/custom-component/frameworks/json-schema-validator/Validator.js +57 -44
  6. package/es/library/custom-component/frameworks/json-schema-validator/__generated__/registry.d.js +1 -0
  7. package/es/library/custom-component/frameworks/json-schema-validator/__generated__/registry.js +92 -0
  8. package/es/library/custom-component/frameworks/json-schema-validator/__generated__/validators.js +1 -0
  9. package/es/library/custom-component/frameworks/json-schema-validator/__tests__/Validator.test.js +478 -0
  10. package/es/library/custom-component/frameworks/ui/DependencyFactory.js +16 -0
  11. package/es/platform/client-actions/behaviour/zclient-actions/adapters/presenters/FilterUtils.js +11 -0
  12. package/es/platform/client-actions/behaviour/zclient-actions/adapters/resources/ClientActionsFetchSDK.js +76 -0
  13. package/es/platform/client-actions/behaviour/zclient-actions/applications/interfaces/ClientActionsAPIGatewayParams.js +1 -0
  14. package/es/platform/client-actions/behaviour/zclient-actions/applications/interfaces/ClientActionsFetchSDKParams.js +10 -0
  15. package/es/platform/client-actions/behaviour/zclient-actions/applications/interfaces/IClientActionsFetchSDK.js +0 -0
  16. package/es/platform/client-actions/cc/action-event-mediator/Properties.js +18 -4
  17. package/es/platform/client-scripts/behaviour/zclient-scripts-fetch/adapters/resources/ClientScriptsFetchSDK.js +43 -0
  18. package/es/platform/client-scripts/behaviour/zclient-scripts-fetch/applications/interfaces/ClientScriptsAPIGatewayParams.js +1 -0
  19. package/es/platform/client-scripts/behaviour/zclient-scripts-fetch/applications/interfaces/ClientScriptsSDKFetchParams.js +1 -0
  20. package/es/platform/client-scripts/behaviour/zclient-scripts-fetch/applications/interfaces/IClientScriptsFetchSDK.js +0 -0
  21. package/es/platform/components/smart-action-band/adapters/presenters/ActionBandTranslator.js +7 -4
  22. package/es/platform/data-source/http-template/getPageClientActions.js +23 -0
  23. package/es/platform/zform/adapters/presenter/FormTranslator.js +18 -15
  24. package/es/platform/zform/adapters/presenter/translators/SectionTranslator.js +1 -1
  25. package/es/platform/zlist/adapters/presenters/TableTranslator.js +5 -4
  26. package/package.json +6 -4
@@ -0,0 +1 @@
1
+ "use strict";exports["cc_action-band"]=validate10;const schema11={"type":"object","properties":{"moduleName":{"type":"string"},"reloadConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"}}},"searchConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"}}},"columnChooserConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"}}},"textOverflowConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"},"mode":{"type":"string","enum":["clip","wrap"]}}},"sortConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"},"defaultSortField":{"type":"string"},"defaultSortOrder":{"type":"string","enum":["ascending","descending"]},"sortI18NLabels":{"type":"array","items":{"type":"object","additionalProperties":{"type":"object","properties":{"ascending":{"type":"string"},"descending":{"type":"string"}},"additionalProperties":false}}}}}},"required":["moduleName"],"$id":"cc_action-band"};function validate10(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_action-band" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.moduleName===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"moduleName"},message:"must have required property '"+"moduleName"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.moduleName!==undefined){if(typeof data.moduleName!=="string"){const err1={instancePath:instancePath+"/moduleName",schemaPath:"#/properties/moduleName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.reloadConfig!==undefined){let data1=data.reloadConfig;if(data1&&typeof data1=="object"&&!Array.isArray(data1)){if(data1.isEnabled!==undefined){if(typeof data1.isEnabled!=="boolean"){const err2={instancePath:instancePath+"/reloadConfig/isEnabled",schemaPath:"#/properties/reloadConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/reloadConfig",schemaPath:"#/properties/reloadConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.searchConfig!==undefined){let data3=data.searchConfig;if(data3&&typeof data3=="object"&&!Array.isArray(data3)){if(data3.isEnabled!==undefined){if(typeof data3.isEnabled!=="boolean"){const err4={instancePath:instancePath+"/searchConfig/isEnabled",schemaPath:"#/properties/searchConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}}else{const err5={instancePath:instancePath+"/searchConfig",schemaPath:"#/properties/searchConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data.columnChooserConfig!==undefined){let data5=data.columnChooserConfig;if(data5&&typeof data5=="object"&&!Array.isArray(data5)){if(data5.isEnabled!==undefined){if(typeof data5.isEnabled!=="boolean"){const err6={instancePath:instancePath+"/columnChooserConfig/isEnabled",schemaPath:"#/properties/columnChooserConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}}else{const err7={instancePath:instancePath+"/columnChooserConfig",schemaPath:"#/properties/columnChooserConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data.textOverflowConfig!==undefined){let data7=data.textOverflowConfig;if(data7&&typeof data7=="object"&&!Array.isArray(data7)){if(data7.isEnabled!==undefined){if(typeof data7.isEnabled!=="boolean"){const err8={instancePath:instancePath+"/textOverflowConfig/isEnabled",schemaPath:"#/properties/textOverflowConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data7.mode!==undefined){let data9=data7.mode;if(typeof data9!=="string"){const err9={instancePath:instancePath+"/textOverflowConfig/mode",schemaPath:"#/properties/textOverflowConfig/properties/mode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}if(!(data9==="clip"||data9==="wrap")){const err10={instancePath:instancePath+"/textOverflowConfig/mode",schemaPath:"#/properties/textOverflowConfig/properties/mode/enum",keyword:"enum",params:{allowedValues:schema11.properties.textOverflowConfig.properties.mode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}}else{const err11={instancePath:instancePath+"/textOverflowConfig",schemaPath:"#/properties/textOverflowConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.sortConfig!==undefined){let data10=data.sortConfig;if(data10&&typeof data10=="object"&&!Array.isArray(data10)){if(data10.isEnabled!==undefined){if(typeof data10.isEnabled!=="boolean"){const err12={instancePath:instancePath+"/sortConfig/isEnabled",schemaPath:"#/properties/sortConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data10.defaultSortField!==undefined){if(typeof data10.defaultSortField!=="string"){const err13={instancePath:instancePath+"/sortConfig/defaultSortField",schemaPath:"#/properties/sortConfig/properties/defaultSortField/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data10.defaultSortOrder!==undefined){let data13=data10.defaultSortOrder;if(typeof data13!=="string"){const err14={instancePath:instancePath+"/sortConfig/defaultSortOrder",schemaPath:"#/properties/sortConfig/properties/defaultSortOrder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}if(!(data13==="ascending"||data13==="descending")){const err15={instancePath:instancePath+"/sortConfig/defaultSortOrder",schemaPath:"#/properties/sortConfig/properties/defaultSortOrder/enum",keyword:"enum",params:{allowedValues:schema11.properties.sortConfig.properties.defaultSortOrder.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data10.sortI18NLabels!==undefined){let data14=data10.sortI18NLabels;if(Array.isArray(data14)){const len0=data14.length;for(let i0=0;i0<len0;i0++){let data15=data14[i0];if(data15&&typeof data15=="object"&&!Array.isArray(data15)){for(const key0 in data15){let data16=data15[key0];if(data16&&typeof data16=="object"&&!Array.isArray(data16)){for(const key1 in data16){if(!(key1==="ascending"||key1==="descending")){const err16={instancePath:instancePath+"/sortConfig/sortI18NLabels/"+i0+"/"+key0.replace(/~/g,"~0").replace(/\//g,"~1"),schemaPath:"#/properties/sortConfig/properties/sortI18NLabels/items/additionalProperties/additionalProperties",keyword:"additionalProperties",params:{additionalProperty:key1},message:"must NOT have additional properties"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data16.ascending!==undefined){if(typeof data16.ascending!=="string"){const err17={instancePath:instancePath+"/sortConfig/sortI18NLabels/"+i0+"/"+key0.replace(/~/g,"~0").replace(/\//g,"~1")+"/ascending",schemaPath:"#/properties/sortConfig/properties/sortI18NLabels/items/additionalProperties/properties/ascending/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data16.descending!==undefined){if(typeof data16.descending!=="string"){const err18={instancePath:instancePath+"/sortConfig/sortI18NLabels/"+i0+"/"+key0.replace(/~/g,"~0").replace(/\//g,"~1")+"/descending",schemaPath:"#/properties/sortConfig/properties/sortI18NLabels/items/additionalProperties/properties/descending/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}}else{const err19={instancePath:instancePath+"/sortConfig/sortI18NLabels/"+i0+"/"+key0.replace(/~/g,"~0").replace(/\//g,"~1"),schemaPath:"#/properties/sortConfig/properties/sortI18NLabels/items/additionalProperties/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}}else{const err20={instancePath:instancePath+"/sortConfig/sortI18NLabels/"+i0,schemaPath:"#/properties/sortConfig/properties/sortI18NLabels/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}}else{const err21={instancePath:instancePath+"/sortConfig/sortI18NLabels",schemaPath:"#/properties/sortConfig/properties/sortI18NLabels/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath:instancePath+"/sortConfig",schemaPath:"#/properties/sortConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}}else{const err23={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}validate10.errors=vErrors;return errors===0;}exports["cc_action-icon"]=validate11;const schema12={"type":"object","properties":{"icon":{"type":"string"},"label":{"type":"string"},"colorVariant":{"type":"string","enum":["primary","danger","success","warning","default"]},"isHoverable":{"type":"boolean"},"hoverVariant":{"type":"string","enum":["primary","danger","success","warning","default"]},"iconSize":{"type":"number"},"hasPadding":{"type":"boolean"},"isDisabled":{"type":"boolean"}},"required":["icon","label"],"$id":"cc_action-icon"};function validate11(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_action-icon" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.icon===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"icon"},message:"must have required property '"+"icon"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.label===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"label"},message:"must have required property '"+"label"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.icon!==undefined){if(typeof data.icon!=="string"){const err2={instancePath:instancePath+"/icon",schemaPath:"#/properties/icon/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err3={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.colorVariant!==undefined){let data2=data.colorVariant;if(typeof data2!=="string"){const err4={instancePath:instancePath+"/colorVariant",schemaPath:"#/properties/colorVariant/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}if(!(data2==="primary"||data2==="danger"||data2==="success"||data2==="warning"||data2==="default")){const err5={instancePath:instancePath+"/colorVariant",schemaPath:"#/properties/colorVariant/enum",keyword:"enum",params:{allowedValues:schema12.properties.colorVariant.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data.isHoverable!==undefined){if(typeof data.isHoverable!=="boolean"){const err6={instancePath:instancePath+"/isHoverable",schemaPath:"#/properties/isHoverable/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.hoverVariant!==undefined){let data4=data.hoverVariant;if(typeof data4!=="string"){const err7={instancePath:instancePath+"/hoverVariant",schemaPath:"#/properties/hoverVariant/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}if(!(data4==="primary"||data4==="danger"||data4==="success"||data4==="warning"||data4==="default")){const err8={instancePath:instancePath+"/hoverVariant",schemaPath:"#/properties/hoverVariant/enum",keyword:"enum",params:{allowedValues:schema12.properties.hoverVariant.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data.iconSize!==undefined){if(!(typeof data.iconSize=="number")){const err9={instancePath:instancePath+"/iconSize",schemaPath:"#/properties/iconSize/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.hasPadding!==undefined){if(typeof data.hasPadding!=="boolean"){const err10={instancePath:instancePath+"/hasPadding",schemaPath:"#/properties/hasPadding/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.isDisabled!==undefined){if(typeof data.isDisabled!=="boolean"){const err11={instancePath:instancePath+"/isDisabled",schemaPath:"#/properties/isDisabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}}else{const err12={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}validate11.errors=vErrors;return errors===0;}exports["cc_action-location"]=validate12;const schema13={"type":"object","properties":{"actions":{"type":"array","minItems":0,"items":{"type":"object","properties":{"component":{"type":"string"},"id":{"type":"string"},"properties":{"type":"object"},"eventMappings":{"type":"array","minItems":0,"items":{"type":"object","properties":{"id":{"type":"string"},"sourceEvent":{"type":"string"},"payload":{"type":"object"}},"required":["sourceEvent","id"]}}},"required":["component","properties"]}}},"required":["actions"],"$id":"cc_action-location"};function validate12(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_action-location" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.actions===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"actions"},message:"must have required property '"+"actions"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.actions!==undefined){let data0=data.actions;if(Array.isArray(data0)){if(data0.length<0){const err1={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/minItems",keyword:"minItems",params:{limit:0},message:"must NOT have fewer than 0 items"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}const len0=data0.length;for(let i0=0;i0<len0;i0++){let data1=data0[i0];if(data1&&typeof data1=="object"&&!Array.isArray(data1)){if(data1.component===undefined){const err2={instancePath:instancePath+"/actions/"+i0,schemaPath:"#/properties/actions/items/required",keyword:"required",params:{missingProperty:"component"},message:"must have required property '"+"component"+"'"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}if(data1.properties===undefined){const err3={instancePath:instancePath+"/actions/"+i0,schemaPath:"#/properties/actions/items/required",keyword:"required",params:{missingProperty:"properties"},message:"must have required property '"+"properties"+"'"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}if(data1.component!==undefined){if(typeof data1.component!=="string"){const err4={instancePath:instancePath+"/actions/"+i0+"/component",schemaPath:"#/properties/actions/items/properties/component/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data1.id!==undefined){if(typeof data1.id!=="string"){const err5={instancePath:instancePath+"/actions/"+i0+"/id",schemaPath:"#/properties/actions/items/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data1.properties!==undefined){let data4=data1.properties;if(!(data4&&typeof data4=="object"&&!Array.isArray(data4))){const err6={instancePath:instancePath+"/actions/"+i0+"/properties",schemaPath:"#/properties/actions/items/properties/properties/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data1.eventMappings!==undefined){let data5=data1.eventMappings;if(Array.isArray(data5)){if(data5.length<0){const err7={instancePath:instancePath+"/actions/"+i0+"/eventMappings",schemaPath:"#/properties/actions/items/properties/eventMappings/minItems",keyword:"minItems",params:{limit:0},message:"must NOT have fewer than 0 items"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}const len1=data5.length;for(let i1=0;i1<len1;i1++){let data6=data5[i1];if(data6&&typeof data6=="object"&&!Array.isArray(data6)){if(data6.sourceEvent===undefined){const err8={instancePath:instancePath+"/actions/"+i0+"/eventMappings/"+i1,schemaPath:"#/properties/actions/items/properties/eventMappings/items/required",keyword:"required",params:{missingProperty:"sourceEvent"},message:"must have required property '"+"sourceEvent"+"'"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}if(data6.id===undefined){const err9={instancePath:instancePath+"/actions/"+i0+"/eventMappings/"+i1,schemaPath:"#/properties/actions/items/properties/eventMappings/items/required",keyword:"required",params:{missingProperty:"id"},message:"must have required property '"+"id"+"'"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}if(data6.id!==undefined){if(typeof data6.id!=="string"){const err10={instancePath:instancePath+"/actions/"+i0+"/eventMappings/"+i1+"/id",schemaPath:"#/properties/actions/items/properties/eventMappings/items/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data6.sourceEvent!==undefined){if(typeof data6.sourceEvent!=="string"){const err11={instancePath:instancePath+"/actions/"+i0+"/eventMappings/"+i1+"/sourceEvent",schemaPath:"#/properties/actions/items/properties/eventMappings/items/properties/sourceEvent/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data6.payload!==undefined){let data9=data6.payload;if(!(data9&&typeof data9=="object"&&!Array.isArray(data9))){const err12={instancePath:instancePath+"/actions/"+i0+"/eventMappings/"+i1+"/payload",schemaPath:"#/properties/actions/items/properties/eventMappings/items/properties/payload/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}}else{const err13={instancePath:instancePath+"/actions/"+i0+"/eventMappings/"+i1,schemaPath:"#/properties/actions/items/properties/eventMappings/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}}else{const err14={instancePath:instancePath+"/actions/"+i0+"/eventMappings",schemaPath:"#/properties/actions/items/properties/eventMappings/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}}else{const err15={instancePath:instancePath+"/actions/"+i0,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}}else{const err16={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}}else{const err17={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}validate12.errors=vErrors;return errors===0;}exports.cc_avatar=validate13;const schema14={"type":"object","properties":{"name":{"type":"string"},"imageSrc":{"type":"string"},"label":{"type":"string"},"size":{"type":"string","enum":["xsmall","small","medium","large","xlarge"]},"tooltip":{"type":"string"}},"required":["name","tooltip"],"$id":"cc_avatar"};function validate13(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_avatar" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.tooltip===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"tooltip"},message:"must have required property '"+"tooltip"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.name!==undefined){if(typeof data.name!=="string"){const err2={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.imageSrc!==undefined){if(typeof data.imageSrc!=="string"){const err3={instancePath:instancePath+"/imageSrc",schemaPath:"#/properties/imageSrc/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err4={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.size!==undefined){let data3=data.size;if(typeof data3!=="string"){const err5={instancePath:instancePath+"/size",schemaPath:"#/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}if(!(data3==="xsmall"||data3==="small"||data3==="medium"||data3==="large"||data3==="xlarge")){const err6={instancePath:instancePath+"/size",schemaPath:"#/properties/size/enum",keyword:"enum",params:{allowedValues:schema14.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err7={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}}else{const err8={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}validate13.errors=vErrors;return errors===0;}exports.cc_breadcrumb=validate14;const schema15={"type":"object","properties":{"items":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"text":{"type":"string"},"isLink":{"type":"boolean"},"iconName":{"type":"string"},"iconSize":{"type":"string"},"isActive":{"type":"boolean"}}},"required":["id","text"]}},"required":["items"],"$id":"cc_breadcrumb"};function validate14(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_breadcrumb" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.items===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"items"},message:"must have required property '"+"items"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.items!==undefined){let data0=data.items;if(Array.isArray(data0)){const len0=data0.length;for(let i0=0;i0<len0;i0++){let data1=data0[i0];if(data1&&typeof data1=="object"&&!Array.isArray(data1)){if(data1.id!==undefined){if(typeof data1.id!=="string"){const err1={instancePath:instancePath+"/items/"+i0+"/id",schemaPath:"#/properties/items/items/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data1.text!==undefined){if(typeof data1.text!=="string"){const err2={instancePath:instancePath+"/items/"+i0+"/text",schemaPath:"#/properties/items/items/properties/text/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data1.isLink!==undefined){if(typeof data1.isLink!=="boolean"){const err3={instancePath:instancePath+"/items/"+i0+"/isLink",schemaPath:"#/properties/items/items/properties/isLink/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data1.iconName!==undefined){if(typeof data1.iconName!=="string"){const err4={instancePath:instancePath+"/items/"+i0+"/iconName",schemaPath:"#/properties/items/items/properties/iconName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data1.iconSize!==undefined){if(typeof data1.iconSize!=="string"){const err5={instancePath:instancePath+"/items/"+i0+"/iconSize",schemaPath:"#/properties/items/items/properties/iconSize/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data1.isActive!==undefined){if(typeof data1.isActive!=="boolean"){const err6={instancePath:instancePath+"/items/"+i0+"/isActive",schemaPath:"#/properties/items/items/properties/isActive/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}}else{const err7={instancePath:instancePath+"/items/"+i0,schemaPath:"#/properties/items/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}}else{const err8={instancePath:instancePath+"/items",schemaPath:"#/properties/items/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.id===undefined){const err9={instancePath:instancePath+"/items",schemaPath:"#/properties/items/required",keyword:"required",params:{missingProperty:"id"},message:"must have required property '"+"id"+"'"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}if(data0.text===undefined){const err10={instancePath:instancePath+"/items",schemaPath:"#/properties/items/required",keyword:"required",params:{missingProperty:"text"},message:"must have required property '"+"text"+"'"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}}}else{const err11={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}validate14.errors=vErrors;return errors===0;}exports.cc_button=validate15;const schema16={"type":"object","properties":{"text":{"type":"string"},"palette":{"type":"string","enum":["primary","secondary","danger","success","plainPrimary","plainSecondary","plainDanger","plainSuccess","primaryFilled","secondaryFilled","dangerFilled","successFilled","info","tertiaryFilled"]},"size":{"type":"string","enum":["small","medium","large","xlarge"]},"isRounded":{"type":"boolean"},"isDisabled":{"type":"boolean"},"id":{"type":"string"},"status":{"type":"string","enum":["loading","success","none"]},"tooltip":{"type":"string"}},"required":[],"$id":"cc_button"};function validate15(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_button" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.text!==undefined){if(typeof data.text!=="string"){const err0={instancePath:instancePath+"/text",schemaPath:"#/properties/text/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data.palette!==undefined){let data1=data.palette;if(typeof data1!=="string"){const err1={instancePath:instancePath+"/palette",schemaPath:"#/properties/palette/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(!(data1==="primary"||data1==="secondary"||data1==="danger"||data1==="success"||data1==="plainPrimary"||data1==="plainSecondary"||data1==="plainDanger"||data1==="plainSuccess"||data1==="primaryFilled"||data1==="secondaryFilled"||data1==="dangerFilled"||data1==="successFilled"||data1==="info"||data1==="tertiaryFilled")){const err2={instancePath:instancePath+"/palette",schemaPath:"#/properties/palette/enum",keyword:"enum",params:{allowedValues:schema16.properties.palette.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.size!==undefined){let data2=data.size;if(typeof data2!=="string"){const err3={instancePath:instancePath+"/size",schemaPath:"#/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}if(!(data2==="small"||data2==="medium"||data2==="large"||data2==="xlarge")){const err4={instancePath:instancePath+"/size",schemaPath:"#/properties/size/enum",keyword:"enum",params:{allowedValues:schema16.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.isRounded!==undefined){if(typeof data.isRounded!=="boolean"){const err5={instancePath:instancePath+"/isRounded",schemaPath:"#/properties/isRounded/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data.isDisabled!==undefined){if(typeof data.isDisabled!=="boolean"){const err6={instancePath:instancePath+"/isDisabled",schemaPath:"#/properties/isDisabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err7={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data.status!==undefined){let data6=data.status;if(typeof data6!=="string"){const err8={instancePath:instancePath+"/status",schemaPath:"#/properties/status/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}if(!(data6==="loading"||data6==="success"||data6==="none")){const err9={instancePath:instancePath+"/status",schemaPath:"#/properties/status/enum",keyword:"enum",params:{allowedValues:schema16.properties.status.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err10={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}}else{const err11={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}validate15.errors=vErrors;return errors===0;}exports.cc_checkbox=validate16;const schema17={"type":"object","properties":{"id":{"type":"string"},"checked":{"type":"boolean"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"readonly":{"type":"boolean"},"label":{"type":"string"},"tooltip":{"type":"string"},"clientScripts":{"type":"array"}},"required":[],"$id":"cc_checkbox"};function validate16(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_checkbox" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.id!==undefined){if(typeof data.id!=="string"){const err0={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data.checked!==undefined){if(typeof data.checked!=="boolean"){const err1={instancePath:instancePath+"/checked",schemaPath:"#/properties/checked/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err2={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err3={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err4={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err5={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err6={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err7={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}}else{const err8={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}validate16.errors=vErrors;return errors===0;}exports.cc_date=validate17;const schema18={"type":"object","properties":{"id":{"type":"string"},"value":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"readonly":{"type":"boolean"},"isTimeIncluded":{"type":"boolean"},"pattern":{"type":"string"},"timeZone":{"type":"string"},"actions":{"type":"array"}},"required":[],"$id":"cc_date"};function validate17(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_date" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.id!==undefined){if(typeof data.id!=="string"){const err0={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data.value!==undefined){if(typeof data.value!=="string"){const err1={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err2={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err3={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err4={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.isTimeIncluded!==undefined){if(typeof data.isTimeIncluded!=="boolean"){const err5={instancePath:instancePath+"/isTimeIncluded",schemaPath:"#/properties/isTimeIncluded/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data.pattern!==undefined){if(typeof data.pattern!=="string"){const err6={instancePath:instancePath+"/pattern",schemaPath:"#/properties/pattern/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.timeZone!==undefined){if(typeof data.timeZone!=="string"){const err7={instancePath:instancePath+"/timeZone",schemaPath:"#/properties/timeZone/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data.actions!==undefined){if(!Array.isArray(data.actions)){const err8={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}validate17.errors=vErrors;return errors===0;}exports.cc_email=validate18;const schema19={"type":"object","properties":{"email":{"type":"string"},"tooltip":{"type":"string"},"isDotted":{"type":"boolean"},"weight":{"type":"string","enum":["light","regular","semibold","bold"]}},"required":["email","tooltip"],"$id":"cc_email"};function validate18(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_email" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.email===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"email"},message:"must have required property '"+"email"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.tooltip===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"tooltip"},message:"must have required property '"+"tooltip"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.email!==undefined){if(typeof data.email!=="string"){const err2={instancePath:instancePath+"/email",schemaPath:"#/properties/email/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err3={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.isDotted!==undefined){if(typeof data.isDotted!=="boolean"){const err4={instancePath:instancePath+"/isDotted",schemaPath:"#/properties/isDotted/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.weight!==undefined){let data3=data.weight;if(typeof data3!=="string"){const err5={instancePath:instancePath+"/weight",schemaPath:"#/properties/weight/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}if(!(data3==="light"||data3==="regular"||data3==="semibold"||data3==="bold")){const err6={instancePath:instancePath+"/weight",schemaPath:"#/properties/weight/enum",keyword:"enum",params:{allowedValues:schema19.properties.weight.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}}else{const err7={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}validate18.errors=vErrors;return errors===0;}exports["cc_empty-state"]=validate19;const schema20={"type":"object","properties":{},"required":[],"$id":"cc_empty-state"};function validate19(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_empty-state" */;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++;}validate19.errors=vErrors;return errors===0;}exports["cc_error-state"]=validate20;const schema21={"type":"object","properties":{"type":{"type":"string","enum":["Inconvenience","OopsSomethingMiss","UnableToProcess","PermissionDenied","UrlNotFound","WillBeRightBack"]},"title":{"type":"string"},"description":{"type":"string"}},"required":[],"$id":"cc_error-state"};function validate20(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_error-state" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.type!==undefined){let data0=data.type;if(typeof data0!=="string"){const err0={instancePath:instancePath+"/type",schemaPath:"#/properties/type/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(!(data0==="Inconvenience"||data0==="OopsSomethingMiss"||data0==="UnableToProcess"||data0==="PermissionDenied"||data0==="UrlNotFound"||data0==="WillBeRightBack")){const err1={instancePath:instancePath+"/type",schemaPath:"#/properties/type/enum",keyword:"enum",params:{allowedValues:schema21.properties.type.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.title!==undefined){if(typeof data.title!=="string"){const err2={instancePath:instancePath+"/title",schemaPath:"#/properties/title/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.description!==undefined){if(typeof data.description!=="string"){const err3={instancePath:instancePath+"/description",schemaPath:"#/properties/description/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}}else{const err4={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}validate20.errors=vErrors;return errors===0;}exports.cc_fields_boolean=validate21;const schema22={"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"boolean"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"}},"required":["name","value"],"$id":"cc_fields_boolean"};function validate21(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_fields_boolean" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.value===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.type!==undefined){let data0=data.type;const _errs2=errors;let valid1=false;const _errs3=errors;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.UIComponentName!==undefined){if(typeof data0.UIComponentName!=="string"){const err2={instancePath:instancePath+"/type/UIComponentName",schemaPath:"#/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}var _valid0=_errs3===errors;valid1=valid1||_valid0;if(!valid1){const _errs7=errors;if(typeof data0!=="string"){const err4={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}var _valid0=_errs7===errors;valid1=valid1||_valid0;}if(!valid1){const err5={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}else{errors=_errs2;if(vErrors!==null){if(_errs2){vErrors.length=_errs2;}else{vErrors=null;}}}}if(data.uiConfig!==undefined){let data2=data.uiConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.size!==undefined){let data3=data2.size;if(typeof data3!=="string"){const err6={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data3==="small"||data3==="large")){const err7={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema22.properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data2.breakRow!==undefined){if(typeof data2.breakRow!=="boolean"){const err8={instancePath:instancePath+"/uiConfig/breakRow",schemaPath:"#/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/uiConfig",schemaPath:"#/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err10={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err11={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err12={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.value!==undefined){if(typeof data.value!=="boolean"){const err13={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err14={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.isFocused!==undefined){if(typeof data.isFocused!=="boolean"){const err15={instancePath:instancePath+"/isFocused",schemaPath:"#/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err16={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err17={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.toolTipType!==undefined){if(typeof data.toolTipType!=="string"){const err18={instancePath:instancePath+"/toolTipType",schemaPath:"#/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err19={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err20={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.labelActions!==undefined){let data16=data.labelActions;if(Array.isArray(data16)){const len0=data16.length;for(let i0=0;i0<len0;i0++){let data17=data16[i0];if(!(data17&&typeof data17=="object"&&!Array.isArray(data17))){const err21={instancePath:instancePath+"/labelActions/"+i0,schemaPath:"#/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath:instancePath+"/labelActions",schemaPath:"#/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.actions!==undefined){let data18=data.actions;if(Array.isArray(data18)){const len1=data18.length;for(let i1=0;i1<len1;i1++){let data19=data18[i1];if(!(data19&&typeof data19=="object"&&!Array.isArray(data19))){const err23={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}}else{const err24={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data.textOverflowMode!==undefined){let data20=data.textOverflowMode;if(typeof data20!=="string"){const err25={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}if(!(data20==="clip"||data20==="wrap")){const err26={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema22.properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.isRead!==undefined){if(typeof data.isRead!=="boolean"){const err27={instancePath:instancePath+"/isRead",schemaPath:"#/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err28={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err29={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}}else{const err30={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}validate21.errors=vErrors;return errors===0;}exports["cc_fields_coloured-multi-select"]=validate22;const schema23={"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"array"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"options":{"type":"array","items":{"type":"object","properties":{"value":{"type":"string"},"colorCode":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["value"]}}},"required":["name","value"],"$id":"cc_fields_coloured-multi-select"};function validate22(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_fields_coloured-multi-select" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.value===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.type!==undefined){let data0=data.type;const _errs2=errors;let valid1=false;const _errs3=errors;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.UIComponentName!==undefined){if(typeof data0.UIComponentName!=="string"){const err2={instancePath:instancePath+"/type/UIComponentName",schemaPath:"#/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}var _valid0=_errs3===errors;valid1=valid1||_valid0;if(!valid1){const _errs7=errors;if(typeof data0!=="string"){const err4={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}var _valid0=_errs7===errors;valid1=valid1||_valid0;}if(!valid1){const err5={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}else{errors=_errs2;if(vErrors!==null){if(_errs2){vErrors.length=_errs2;}else{vErrors=null;}}}}if(data.uiConfig!==undefined){let data2=data.uiConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.size!==undefined){let data3=data2.size;if(typeof data3!=="string"){const err6={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data3==="small"||data3==="large")){const err7={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema23.properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data2.breakRow!==undefined){if(typeof data2.breakRow!=="boolean"){const err8={instancePath:instancePath+"/uiConfig/breakRow",schemaPath:"#/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/uiConfig",schemaPath:"#/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err10={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err11={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err12={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.value!==undefined){if(!Array.isArray(data.value)){const err13={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err14={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.isFocused!==undefined){if(typeof data.isFocused!=="boolean"){const err15={instancePath:instancePath+"/isFocused",schemaPath:"#/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err16={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err17={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.toolTipType!==undefined){if(typeof data.toolTipType!=="string"){const err18={instancePath:instancePath+"/toolTipType",schemaPath:"#/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err19={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err20={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.labelActions!==undefined){let data16=data.labelActions;if(Array.isArray(data16)){const len0=data16.length;for(let i0=0;i0<len0;i0++){let data17=data16[i0];if(!(data17&&typeof data17=="object"&&!Array.isArray(data17))){const err21={instancePath:instancePath+"/labelActions/"+i0,schemaPath:"#/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath:instancePath+"/labelActions",schemaPath:"#/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.actions!==undefined){let data18=data.actions;if(Array.isArray(data18)){const len1=data18.length;for(let i1=0;i1<len1;i1++){let data19=data18[i1];if(!(data19&&typeof data19=="object"&&!Array.isArray(data19))){const err23={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}}else{const err24={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data.textOverflowMode!==undefined){let data20=data.textOverflowMode;if(typeof data20!=="string"){const err25={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}if(!(data20==="clip"||data20==="wrap")){const err26={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema23.properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.isRead!==undefined){if(typeof data.isRead!=="boolean"){const err27={instancePath:instancePath+"/isRead",schemaPath:"#/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err28={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err29={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}if(data.options!==undefined){let data24=data.options;if(Array.isArray(data24)){const len2=data24.length;for(let i2=0;i2<len2;i2++){let data25=data24[i2];if(data25&&typeof data25=="object"&&!Array.isArray(data25)){if(data25.value===undefined){const err30={instancePath:instancePath+"/options/"+i2,schemaPath:"#/properties/options/items/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}if(data25.value!==undefined){if(typeof data25.value!=="string"){const err31={instancePath:instancePath+"/options/"+i2+"/value",schemaPath:"#/properties/options/items/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err31];}else{vErrors.push(err31);}errors++;}}if(data25.colorCode!==undefined){let data27=data25.colorCode;const _errs60=errors;let valid11=false;const _errs61=errors;if(typeof data27!=="string"){const err32={instancePath:instancePath+"/options/"+i2+"/colorCode",schemaPath:"#/properties/options/items/properties/colorCode/anyOf/0/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err32];}else{vErrors.push(err32);}errors++;}var _valid1=_errs61===errors;valid11=valid11||_valid1;if(!valid11){const _errs63=errors;if(data27!==null){const err33={instancePath:instancePath+"/options/"+i2+"/colorCode",schemaPath:"#/properties/options/items/properties/colorCode/anyOf/1/type",keyword:"type",params:{type:"null"},message:"must be null"};if(vErrors===null){vErrors=[err33];}else{vErrors.push(err33);}errors++;}var _valid1=_errs63===errors;valid11=valid11||_valid1;}if(!valid11){const err34={instancePath:instancePath+"/options/"+i2+"/colorCode",schemaPath:"#/properties/options/items/properties/colorCode/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err34];}else{vErrors.push(err34);}errors++;}else{errors=_errs60;if(vErrors!==null){if(_errs60){vErrors.length=_errs60;}else{vErrors=null;}}}}}else{const err35={instancePath:instancePath+"/options/"+i2,schemaPath:"#/properties/options/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err35];}else{vErrors.push(err35);}errors++;}}}else{const err36={instancePath:instancePath+"/options",schemaPath:"#/properties/options/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err36];}else{vErrors.push(err36);}errors++;}}}else{const err37={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err37];}else{vErrors.push(err37);}errors++;}validate22.errors=vErrors;return errors===0;}exports["cc_fields_coloured-pick-list"]=validate23;const schema24={"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"options":{"type":"array","items":{"type":"object","properties":{"value":{"type":"string"},"colorCode":{"anyOf":[{"type":"string"},{"type":"null"}]}},"required":["value"]}}},"required":["name","value"],"$id":"cc_fields_coloured-pick-list"};function validate23(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_fields_coloured-pick-list" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.value===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.type!==undefined){let data0=data.type;const _errs2=errors;let valid1=false;const _errs3=errors;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.UIComponentName!==undefined){if(typeof data0.UIComponentName!=="string"){const err2={instancePath:instancePath+"/type/UIComponentName",schemaPath:"#/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}var _valid0=_errs3===errors;valid1=valid1||_valid0;if(!valid1){const _errs7=errors;if(typeof data0!=="string"){const err4={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}var _valid0=_errs7===errors;valid1=valid1||_valid0;}if(!valid1){const err5={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}else{errors=_errs2;if(vErrors!==null){if(_errs2){vErrors.length=_errs2;}else{vErrors=null;}}}}if(data.uiConfig!==undefined){let data2=data.uiConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.size!==undefined){let data3=data2.size;if(typeof data3!=="string"){const err6={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data3==="small"||data3==="large")){const err7={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema24.properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data2.breakRow!==undefined){if(typeof data2.breakRow!=="boolean"){const err8={instancePath:instancePath+"/uiConfig/breakRow",schemaPath:"#/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/uiConfig",schemaPath:"#/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err10={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err11={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err12={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.value!==undefined){if(typeof data.value!=="string"){const err13={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err14={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.isFocused!==undefined){if(typeof data.isFocused!=="boolean"){const err15={instancePath:instancePath+"/isFocused",schemaPath:"#/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err16={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err17={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.toolTipType!==undefined){if(typeof data.toolTipType!=="string"){const err18={instancePath:instancePath+"/toolTipType",schemaPath:"#/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err19={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err20={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.labelActions!==undefined){let data16=data.labelActions;if(Array.isArray(data16)){const len0=data16.length;for(let i0=0;i0<len0;i0++){let data17=data16[i0];if(!(data17&&typeof data17=="object"&&!Array.isArray(data17))){const err21={instancePath:instancePath+"/labelActions/"+i0,schemaPath:"#/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath:instancePath+"/labelActions",schemaPath:"#/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.actions!==undefined){let data18=data.actions;if(Array.isArray(data18)){const len1=data18.length;for(let i1=0;i1<len1;i1++){let data19=data18[i1];if(!(data19&&typeof data19=="object"&&!Array.isArray(data19))){const err23={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}}else{const err24={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data.textOverflowMode!==undefined){let data20=data.textOverflowMode;if(typeof data20!=="string"){const err25={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}if(!(data20==="clip"||data20==="wrap")){const err26={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema24.properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.isRead!==undefined){if(typeof data.isRead!=="boolean"){const err27={instancePath:instancePath+"/isRead",schemaPath:"#/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err28={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err29={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}if(data.options!==undefined){let data24=data.options;if(Array.isArray(data24)){const len2=data24.length;for(let i2=0;i2<len2;i2++){let data25=data24[i2];if(data25&&typeof data25=="object"&&!Array.isArray(data25)){if(data25.value===undefined){const err30={instancePath:instancePath+"/options/"+i2,schemaPath:"#/properties/options/items/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}if(data25.value!==undefined){if(typeof data25.value!=="string"){const err31={instancePath:instancePath+"/options/"+i2+"/value",schemaPath:"#/properties/options/items/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err31];}else{vErrors.push(err31);}errors++;}}if(data25.colorCode!==undefined){let data27=data25.colorCode;const _errs60=errors;let valid11=false;const _errs61=errors;if(typeof data27!=="string"){const err32={instancePath:instancePath+"/options/"+i2+"/colorCode",schemaPath:"#/properties/options/items/properties/colorCode/anyOf/0/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err32];}else{vErrors.push(err32);}errors++;}var _valid1=_errs61===errors;valid11=valid11||_valid1;if(!valid11){const _errs63=errors;if(data27!==null){const err33={instancePath:instancePath+"/options/"+i2+"/colorCode",schemaPath:"#/properties/options/items/properties/colorCode/anyOf/1/type",keyword:"type",params:{type:"null"},message:"must be null"};if(vErrors===null){vErrors=[err33];}else{vErrors.push(err33);}errors++;}var _valid1=_errs63===errors;valid11=valid11||_valid1;}if(!valid11){const err34={instancePath:instancePath+"/options/"+i2+"/colorCode",schemaPath:"#/properties/options/items/properties/colorCode/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err34];}else{vErrors.push(err34);}errors++;}else{errors=_errs60;if(vErrors!==null){if(_errs60){vErrors.length=_errs60;}else{vErrors=null;}}}}}else{const err35={instancePath:instancePath+"/options/"+i2,schemaPath:"#/properties/options/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err35];}else{vErrors.push(err35);}errors++;}}}else{const err36={instancePath:instancePath+"/options",schemaPath:"#/properties/options/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err36];}else{vErrors.push(err36);}errors++;}}}else{const err37={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err37];}else{vErrors.push(err37);}errors++;}validate23.errors=vErrors;return errors===0;}exports.cc_fields_currency=validate24;const schema25={"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"maxLength":{"type":"number"},"currencySymbol":{"type":"string"},"currencyLocale":{"type":"string"}},"required":["name","value"],"$id":"cc_fields_currency"};function validate24(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_fields_currency" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.value===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.type!==undefined){let data0=data.type;const _errs2=errors;let valid1=false;const _errs3=errors;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.UIComponentName!==undefined){if(typeof data0.UIComponentName!=="string"){const err2={instancePath:instancePath+"/type/UIComponentName",schemaPath:"#/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}var _valid0=_errs3===errors;valid1=valid1||_valid0;if(!valid1){const _errs7=errors;if(typeof data0!=="string"){const err4={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}var _valid0=_errs7===errors;valid1=valid1||_valid0;}if(!valid1){const err5={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}else{errors=_errs2;if(vErrors!==null){if(_errs2){vErrors.length=_errs2;}else{vErrors=null;}}}}if(data.uiConfig!==undefined){let data2=data.uiConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.size!==undefined){let data3=data2.size;if(typeof data3!=="string"){const err6={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data3==="small"||data3==="large")){const err7={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema25.properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data2.breakRow!==undefined){if(typeof data2.breakRow!=="boolean"){const err8={instancePath:instancePath+"/uiConfig/breakRow",schemaPath:"#/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/uiConfig",schemaPath:"#/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err10={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err11={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err12={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.value!==undefined){if(typeof data.value!=="string"){const err13={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err14={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.isFocused!==undefined){if(typeof data.isFocused!=="boolean"){const err15={instancePath:instancePath+"/isFocused",schemaPath:"#/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err16={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err17={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.toolTipType!==undefined){if(typeof data.toolTipType!=="string"){const err18={instancePath:instancePath+"/toolTipType",schemaPath:"#/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err19={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err20={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.labelActions!==undefined){let data16=data.labelActions;if(Array.isArray(data16)){const len0=data16.length;for(let i0=0;i0<len0;i0++){let data17=data16[i0];if(!(data17&&typeof data17=="object"&&!Array.isArray(data17))){const err21={instancePath:instancePath+"/labelActions/"+i0,schemaPath:"#/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath:instancePath+"/labelActions",schemaPath:"#/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.actions!==undefined){let data18=data.actions;if(Array.isArray(data18)){const len1=data18.length;for(let i1=0;i1<len1;i1++){let data19=data18[i1];if(!(data19&&typeof data19=="object"&&!Array.isArray(data19))){const err23={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}}else{const err24={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data.textOverflowMode!==undefined){let data20=data.textOverflowMode;if(typeof data20!=="string"){const err25={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}if(!(data20==="clip"||data20==="wrap")){const err26={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema25.properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.isRead!==undefined){if(typeof data.isRead!=="boolean"){const err27={instancePath:instancePath+"/isRead",schemaPath:"#/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err28={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err29={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}if(data.placeholder!==undefined){if(typeof data.placeholder!=="string"){const err30={instancePath:instancePath+"/placeholder",schemaPath:"#/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}}if(data.maxLength!==undefined){if(!(typeof data.maxLength=="number")){const err31={instancePath:instancePath+"/maxLength",schemaPath:"#/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err31];}else{vErrors.push(err31);}errors++;}}if(data.currencySymbol!==undefined){if(typeof data.currencySymbol!=="string"){const err32={instancePath:instancePath+"/currencySymbol",schemaPath:"#/properties/currencySymbol/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err32];}else{vErrors.push(err32);}errors++;}}if(data.currencyLocale!==undefined){if(typeof data.currencyLocale!=="string"){const err33={instancePath:instancePath+"/currencyLocale",schemaPath:"#/properties/currencyLocale/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err33];}else{vErrors.push(err33);}errors++;}}}else{const err34={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err34];}else{vErrors.push(err34);}errors++;}validate24.errors=vErrors;return errors===0;}exports.cc_fields_date=validate25;const schema26={"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"}},"required":["name","value"],"$id":"cc_fields_date"};function validate25(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_fields_date" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.value===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.type!==undefined){let data0=data.type;const _errs2=errors;let valid1=false;const _errs3=errors;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.UIComponentName!==undefined){if(typeof data0.UIComponentName!=="string"){const err2={instancePath:instancePath+"/type/UIComponentName",schemaPath:"#/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}var _valid0=_errs3===errors;valid1=valid1||_valid0;if(!valid1){const _errs7=errors;if(typeof data0!=="string"){const err4={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}var _valid0=_errs7===errors;valid1=valid1||_valid0;}if(!valid1){const err5={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}else{errors=_errs2;if(vErrors!==null){if(_errs2){vErrors.length=_errs2;}else{vErrors=null;}}}}if(data.uiConfig!==undefined){let data2=data.uiConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.size!==undefined){let data3=data2.size;if(typeof data3!=="string"){const err6={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data3==="small"||data3==="large")){const err7={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema26.properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data2.breakRow!==undefined){if(typeof data2.breakRow!=="boolean"){const err8={instancePath:instancePath+"/uiConfig/breakRow",schemaPath:"#/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/uiConfig",schemaPath:"#/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err10={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err11={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err12={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.value!==undefined){if(typeof data.value!=="string"){const err13={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err14={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.isFocused!==undefined){if(typeof data.isFocused!=="boolean"){const err15={instancePath:instancePath+"/isFocused",schemaPath:"#/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err16={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err17={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.toolTipType!==undefined){if(typeof data.toolTipType!=="string"){const err18={instancePath:instancePath+"/toolTipType",schemaPath:"#/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err19={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err20={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.labelActions!==undefined){let data16=data.labelActions;if(Array.isArray(data16)){const len0=data16.length;for(let i0=0;i0<len0;i0++){let data17=data16[i0];if(!(data17&&typeof data17=="object"&&!Array.isArray(data17))){const err21={instancePath:instancePath+"/labelActions/"+i0,schemaPath:"#/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath:instancePath+"/labelActions",schemaPath:"#/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.actions!==undefined){let data18=data.actions;if(Array.isArray(data18)){const len1=data18.length;for(let i1=0;i1<len1;i1++){let data19=data18[i1];if(!(data19&&typeof data19=="object"&&!Array.isArray(data19))){const err23={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}}else{const err24={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data.textOverflowMode!==undefined){let data20=data.textOverflowMode;if(typeof data20!=="string"){const err25={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}if(!(data20==="clip"||data20==="wrap")){const err26={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema26.properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.isRead!==undefined){if(typeof data.isRead!=="boolean"){const err27={instancePath:instancePath+"/isRead",schemaPath:"#/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err28={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err29={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}}else{const err30={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}validate25.errors=vErrors;return errors===0;}exports.cc_fields_datetime=validate26;const schema27={"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"}},"required":["name","value"],"$id":"cc_fields_datetime"};function validate26(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_fields_datetime" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.value===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.type!==undefined){let data0=data.type;const _errs2=errors;let valid1=false;const _errs3=errors;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.UIComponentName!==undefined){if(typeof data0.UIComponentName!=="string"){const err2={instancePath:instancePath+"/type/UIComponentName",schemaPath:"#/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}var _valid0=_errs3===errors;valid1=valid1||_valid0;if(!valid1){const _errs7=errors;if(typeof data0!=="string"){const err4={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}var _valid0=_errs7===errors;valid1=valid1||_valid0;}if(!valid1){const err5={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}else{errors=_errs2;if(vErrors!==null){if(_errs2){vErrors.length=_errs2;}else{vErrors=null;}}}}if(data.uiConfig!==undefined){let data2=data.uiConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.size!==undefined){let data3=data2.size;if(typeof data3!=="string"){const err6={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data3==="small"||data3==="large")){const err7={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema27.properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data2.breakRow!==undefined){if(typeof data2.breakRow!=="boolean"){const err8={instancePath:instancePath+"/uiConfig/breakRow",schemaPath:"#/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/uiConfig",schemaPath:"#/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err10={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err11={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err12={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.value!==undefined){if(typeof data.value!=="string"){const err13={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err14={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.isFocused!==undefined){if(typeof data.isFocused!=="boolean"){const err15={instancePath:instancePath+"/isFocused",schemaPath:"#/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err16={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err17={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.toolTipType!==undefined){if(typeof data.toolTipType!=="string"){const err18={instancePath:instancePath+"/toolTipType",schemaPath:"#/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err19={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err20={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.labelActions!==undefined){let data16=data.labelActions;if(Array.isArray(data16)){const len0=data16.length;for(let i0=0;i0<len0;i0++){let data17=data16[i0];if(!(data17&&typeof data17=="object"&&!Array.isArray(data17))){const err21={instancePath:instancePath+"/labelActions/"+i0,schemaPath:"#/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath:instancePath+"/labelActions",schemaPath:"#/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.actions!==undefined){let data18=data.actions;if(Array.isArray(data18)){const len1=data18.length;for(let i1=0;i1<len1;i1++){let data19=data18[i1];if(!(data19&&typeof data19=="object"&&!Array.isArray(data19))){const err23={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}}else{const err24={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data.textOverflowMode!==undefined){let data20=data.textOverflowMode;if(typeof data20!=="string"){const err25={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}if(!(data20==="clip"||data20==="wrap")){const err26={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema27.properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.isRead!==undefined){if(typeof data.isRead!=="boolean"){const err27={instancePath:instancePath+"/isRead",schemaPath:"#/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err28={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err29={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}}else{const err30={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}validate26.errors=vErrors;return errors===0;}exports.cc_fields_decimal=validate27;const schema28={"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"maxLength":{"type":"number"},"ePHI":{"type":"boolean"}},"required":["name","value"],"$id":"cc_fields_decimal"};function validate27(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_fields_decimal" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.value===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.type!==undefined){let data0=data.type;const _errs2=errors;let valid1=false;const _errs3=errors;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.UIComponentName!==undefined){if(typeof data0.UIComponentName!=="string"){const err2={instancePath:instancePath+"/type/UIComponentName",schemaPath:"#/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}var _valid0=_errs3===errors;valid1=valid1||_valid0;if(!valid1){const _errs7=errors;if(typeof data0!=="string"){const err4={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}var _valid0=_errs7===errors;valid1=valid1||_valid0;}if(!valid1){const err5={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}else{errors=_errs2;if(vErrors!==null){if(_errs2){vErrors.length=_errs2;}else{vErrors=null;}}}}if(data.uiConfig!==undefined){let data2=data.uiConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.size!==undefined){let data3=data2.size;if(typeof data3!=="string"){const err6={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data3==="small"||data3==="large")){const err7={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema28.properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data2.breakRow!==undefined){if(typeof data2.breakRow!=="boolean"){const err8={instancePath:instancePath+"/uiConfig/breakRow",schemaPath:"#/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/uiConfig",schemaPath:"#/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err10={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err11={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err12={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.value!==undefined){if(typeof data.value!=="string"){const err13={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err14={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.isFocused!==undefined){if(typeof data.isFocused!=="boolean"){const err15={instancePath:instancePath+"/isFocused",schemaPath:"#/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err16={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err17={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.toolTipType!==undefined){if(typeof data.toolTipType!=="string"){const err18={instancePath:instancePath+"/toolTipType",schemaPath:"#/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err19={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err20={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.labelActions!==undefined){let data16=data.labelActions;if(Array.isArray(data16)){const len0=data16.length;for(let i0=0;i0<len0;i0++){let data17=data16[i0];if(!(data17&&typeof data17=="object"&&!Array.isArray(data17))){const err21={instancePath:instancePath+"/labelActions/"+i0,schemaPath:"#/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath:instancePath+"/labelActions",schemaPath:"#/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.actions!==undefined){let data18=data.actions;if(Array.isArray(data18)){const len1=data18.length;for(let i1=0;i1<len1;i1++){let data19=data18[i1];if(!(data19&&typeof data19=="object"&&!Array.isArray(data19))){const err23={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}}else{const err24={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data.textOverflowMode!==undefined){let data20=data.textOverflowMode;if(typeof data20!=="string"){const err25={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}if(!(data20==="clip"||data20==="wrap")){const err26={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema28.properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.isRead!==undefined){if(typeof data.isRead!=="boolean"){const err27={instancePath:instancePath+"/isRead",schemaPath:"#/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err28={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err29={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}if(data.placeholder!==undefined){if(typeof data.placeholder!=="string"){const err30={instancePath:instancePath+"/placeholder",schemaPath:"#/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}}if(data.maxLength!==undefined){if(!(typeof data.maxLength=="number")){const err31={instancePath:instancePath+"/maxLength",schemaPath:"#/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err31];}else{vErrors.push(err31);}errors++;}}if(data.ePHI!==undefined){if(typeof data.ePHI!=="boolean"){const err32={instancePath:instancePath+"/ePHI",schemaPath:"#/properties/ePHI/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err32];}else{vErrors.push(err32);}errors++;}}}else{const err33={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err33];}else{vErrors.push(err33);}errors++;}validate27.errors=vErrors;return errors===0;}exports.cc_fields_email=validate28;const schema29={"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"maxLength":{"type":"number"},"placeholder":{"type":"string"}},"required":["name","value"],"$id":"cc_fields_email"};function validate28(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_fields_email" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.value===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.type!==undefined){let data0=data.type;const _errs2=errors;let valid1=false;const _errs3=errors;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.UIComponentName!==undefined){if(typeof data0.UIComponentName!=="string"){const err2={instancePath:instancePath+"/type/UIComponentName",schemaPath:"#/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}var _valid0=_errs3===errors;valid1=valid1||_valid0;if(!valid1){const _errs7=errors;if(typeof data0!=="string"){const err4={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}var _valid0=_errs7===errors;valid1=valid1||_valid0;}if(!valid1){const err5={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}else{errors=_errs2;if(vErrors!==null){if(_errs2){vErrors.length=_errs2;}else{vErrors=null;}}}}if(data.uiConfig!==undefined){let data2=data.uiConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.size!==undefined){let data3=data2.size;if(typeof data3!=="string"){const err6={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data3==="small"||data3==="large")){const err7={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema29.properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data2.breakRow!==undefined){if(typeof data2.breakRow!=="boolean"){const err8={instancePath:instancePath+"/uiConfig/breakRow",schemaPath:"#/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/uiConfig",schemaPath:"#/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err10={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err11={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err12={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.value!==undefined){if(typeof data.value!=="string"){const err13={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err14={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.isFocused!==undefined){if(typeof data.isFocused!=="boolean"){const err15={instancePath:instancePath+"/isFocused",schemaPath:"#/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err16={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err17={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.toolTipType!==undefined){if(typeof data.toolTipType!=="string"){const err18={instancePath:instancePath+"/toolTipType",schemaPath:"#/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err19={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err20={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.labelActions!==undefined){let data16=data.labelActions;if(Array.isArray(data16)){const len0=data16.length;for(let i0=0;i0<len0;i0++){let data17=data16[i0];if(!(data17&&typeof data17=="object"&&!Array.isArray(data17))){const err21={instancePath:instancePath+"/labelActions/"+i0,schemaPath:"#/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath:instancePath+"/labelActions",schemaPath:"#/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.actions!==undefined){let data18=data.actions;if(Array.isArray(data18)){const len1=data18.length;for(let i1=0;i1<len1;i1++){let data19=data18[i1];if(!(data19&&typeof data19=="object"&&!Array.isArray(data19))){const err23={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}}else{const err24={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data.textOverflowMode!==undefined){let data20=data.textOverflowMode;if(typeof data20!=="string"){const err25={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}if(!(data20==="clip"||data20==="wrap")){const err26={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema29.properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.isRead!==undefined){if(typeof data.isRead!=="boolean"){const err27={instancePath:instancePath+"/isRead",schemaPath:"#/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err28={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err29={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}if(data.maxLength!==undefined){if(!(typeof data.maxLength=="number")){const err30={instancePath:instancePath+"/maxLength",schemaPath:"#/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}}if(data.placeholder!==undefined){if(typeof data.placeholder!=="string"){const err31={instancePath:instancePath+"/placeholder",schemaPath:"#/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err31];}else{vErrors.push(err31);}errors++;}}}else{const err32={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err32];}else{vErrors.push(err32);}errors++;}validate28.errors=vErrors;return errors===0;}exports.cc_fields_field=validate29;const schema30={"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"}},"required":["name","value"],"$id":"cc_fields_field"};function validate29(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_fields_field" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.value===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.type!==undefined){let data0=data.type;const _errs2=errors;let valid1=false;const _errs3=errors;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.UIComponentName!==undefined){if(typeof data0.UIComponentName!=="string"){const err2={instancePath:instancePath+"/type/UIComponentName",schemaPath:"#/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}var _valid0=_errs3===errors;valid1=valid1||_valid0;if(!valid1){const _errs7=errors;if(typeof data0!=="string"){const err4={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}var _valid0=_errs7===errors;valid1=valid1||_valid0;}if(!valid1){const err5={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}else{errors=_errs2;if(vErrors!==null){if(_errs2){vErrors.length=_errs2;}else{vErrors=null;}}}}if(data.uiConfig!==undefined){let data2=data.uiConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.size!==undefined){let data3=data2.size;if(typeof data3!=="string"){const err6={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data3==="small"||data3==="large")){const err7={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema30.properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data2.breakRow!==undefined){if(typeof data2.breakRow!=="boolean"){const err8={instancePath:instancePath+"/uiConfig/breakRow",schemaPath:"#/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/uiConfig",schemaPath:"#/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err10={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err11={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err12={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err13={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.isFocused!==undefined){if(typeof data.isFocused!=="boolean"){const err14={instancePath:instancePath+"/isFocused",schemaPath:"#/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err15={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err16={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.toolTipType!==undefined){if(typeof data.toolTipType!=="string"){const err17={instancePath:instancePath+"/toolTipType",schemaPath:"#/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err18={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err19={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.labelActions!==undefined){let data15=data.labelActions;if(Array.isArray(data15)){const len0=data15.length;for(let i0=0;i0<len0;i0++){let data16=data15[i0];if(!(data16&&typeof data16=="object"&&!Array.isArray(data16))){const err20={instancePath:instancePath+"/labelActions/"+i0,schemaPath:"#/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}}else{const err21={instancePath:instancePath+"/labelActions",schemaPath:"#/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}if(data.actions!==undefined){let data17=data.actions;if(Array.isArray(data17)){const len1=data17.length;for(let i1=0;i1<len1;i1++){let data18=data17[i1];if(!(data18&&typeof data18=="object"&&!Array.isArray(data18))){const err22={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}}else{const err23={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}if(data.textOverflowMode!==undefined){let data19=data.textOverflowMode;if(typeof data19!=="string"){const err24={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}if(!(data19==="clip"||data19==="wrap")){const err25={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema30.properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}}if(data.isRead!==undefined){if(typeof data.isRead!=="boolean"){const err26={instancePath:instancePath+"/isRead",schemaPath:"#/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err27={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err28={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}}else{const err29={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}validate29.errors=vErrors;return errors===0;}exports.cc_fields_formula=validate30;const schema31={"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"}},"required":["name","value"],"$id":"cc_fields_formula"};function validate30(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_fields_formula" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.value===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.type!==undefined){let data0=data.type;const _errs2=errors;let valid1=false;const _errs3=errors;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.UIComponentName!==undefined){if(typeof data0.UIComponentName!=="string"){const err2={instancePath:instancePath+"/type/UIComponentName",schemaPath:"#/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}var _valid0=_errs3===errors;valid1=valid1||_valid0;if(!valid1){const _errs7=errors;if(typeof data0!=="string"){const err4={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}var _valid0=_errs7===errors;valid1=valid1||_valid0;}if(!valid1){const err5={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}else{errors=_errs2;if(vErrors!==null){if(_errs2){vErrors.length=_errs2;}else{vErrors=null;}}}}if(data.uiConfig!==undefined){let data2=data.uiConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.size!==undefined){let data3=data2.size;if(typeof data3!=="string"){const err6={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data3==="small"||data3==="large")){const err7={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema31.properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data2.breakRow!==undefined){if(typeof data2.breakRow!=="boolean"){const err8={instancePath:instancePath+"/uiConfig/breakRow",schemaPath:"#/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/uiConfig",schemaPath:"#/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err10={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err11={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err12={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err13={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.isFocused!==undefined){if(typeof data.isFocused!=="boolean"){const err14={instancePath:instancePath+"/isFocused",schemaPath:"#/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err15={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err16={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.toolTipType!==undefined){if(typeof data.toolTipType!=="string"){const err17={instancePath:instancePath+"/toolTipType",schemaPath:"#/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err18={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err19={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.labelActions!==undefined){let data15=data.labelActions;if(Array.isArray(data15)){const len0=data15.length;for(let i0=0;i0<len0;i0++){let data16=data15[i0];if(!(data16&&typeof data16=="object"&&!Array.isArray(data16))){const err20={instancePath:instancePath+"/labelActions/"+i0,schemaPath:"#/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}}else{const err21={instancePath:instancePath+"/labelActions",schemaPath:"#/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}if(data.actions!==undefined){let data17=data.actions;if(Array.isArray(data17)){const len1=data17.length;for(let i1=0;i1<len1;i1++){let data18=data17[i1];if(!(data18&&typeof data18=="object"&&!Array.isArray(data18))){const err22={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}}else{const err23={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}if(data.textOverflowMode!==undefined){let data19=data.textOverflowMode;if(typeof data19!=="string"){const err24={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}if(!(data19==="clip"||data19==="wrap")){const err25={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema31.properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}}if(data.isRead!==undefined){if(typeof data.isRead!=="boolean"){const err26={instancePath:instancePath+"/isRead",schemaPath:"#/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err27={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err28={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}}else{const err29={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}validate30.errors=vErrors;return errors===0;}exports.cc_fields_lookup=validate31;const schema32={"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"lookup":{"type":"object"},"maxLength":{"type":"number"}},"required":["name"],"$id":"cc_fields_lookup"};function validate31(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_fields_lookup" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.type!==undefined){let data0=data.type;const _errs2=errors;let valid1=false;const _errs3=errors;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.UIComponentName!==undefined){if(typeof data0.UIComponentName!=="string"){const err1={instancePath:instancePath+"/type/UIComponentName",schemaPath:"#/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}}else{const err2={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}var _valid0=_errs3===errors;valid1=valid1||_valid0;if(!valid1){const _errs7=errors;if(typeof data0!=="string"){const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}var _valid0=_errs7===errors;valid1=valid1||_valid0;}if(!valid1){const err4={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}else{errors=_errs2;if(vErrors!==null){if(_errs2){vErrors.length=_errs2;}else{vErrors=null;}}}}if(data.uiConfig!==undefined){let data2=data.uiConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.size!==undefined){let data3=data2.size;if(typeof data3!=="string"){const err5={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}if(!(data3==="small"||data3==="large")){const err6={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema32.properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data2.breakRow!==undefined){if(typeof data2.breakRow!=="boolean"){const err7={instancePath:instancePath+"/uiConfig/breakRow",schemaPath:"#/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}}else{const err8={instancePath:instancePath+"/uiConfig",schemaPath:"#/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err9={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err10={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err11={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err12={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.isFocused!==undefined){if(typeof data.isFocused!=="boolean"){const err13={instancePath:instancePath+"/isFocused",schemaPath:"#/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err14={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err15={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.toolTipType!==undefined){if(typeof data.toolTipType!=="string"){const err16={instancePath:instancePath+"/toolTipType",schemaPath:"#/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err17={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err18={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.labelActions!==undefined){let data15=data.labelActions;if(Array.isArray(data15)){const len0=data15.length;for(let i0=0;i0<len0;i0++){let data16=data15[i0];if(!(data16&&typeof data16=="object"&&!Array.isArray(data16))){const err19={instancePath:instancePath+"/labelActions/"+i0,schemaPath:"#/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}}else{const err20={instancePath:instancePath+"/labelActions",schemaPath:"#/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.actions!==undefined){let data17=data.actions;if(Array.isArray(data17)){const len1=data17.length;for(let i1=0;i1<len1;i1++){let data18=data17[i1];if(!(data18&&typeof data18=="object"&&!Array.isArray(data18))){const err21={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.textOverflowMode!==undefined){let data19=data.textOverflowMode;if(typeof data19!=="string"){const err23={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}if(!(data19==="clip"||data19==="wrap")){const err24={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema32.properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data.isRead!==undefined){if(typeof data.isRead!=="boolean"){const err25={instancePath:instancePath+"/isRead",schemaPath:"#/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err26={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err27={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data.lookup!==undefined){let data23=data.lookup;if(!(data23&&typeof data23=="object"&&!Array.isArray(data23))){const err28={instancePath:instancePath+"/lookup",schemaPath:"#/properties/lookup/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data.maxLength!==undefined){if(!(typeof data.maxLength=="number")){const err29={instancePath:instancePath+"/maxLength",schemaPath:"#/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}}else{const err30={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}validate31.errors=vErrors;return errors===0;}exports["cc_fields_multi-line"]=validate32;const schema33={"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"maxLength":{"type":"number"}},"required":["name","value"],"$id":"cc_fields_multi-line"};function validate32(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_fields_multi-line" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.value===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.type!==undefined){let data0=data.type;const _errs2=errors;let valid1=false;const _errs3=errors;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.UIComponentName!==undefined){if(typeof data0.UIComponentName!=="string"){const err2={instancePath:instancePath+"/type/UIComponentName",schemaPath:"#/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}var _valid0=_errs3===errors;valid1=valid1||_valid0;if(!valid1){const _errs7=errors;if(typeof data0!=="string"){const err4={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}var _valid0=_errs7===errors;valid1=valid1||_valid0;}if(!valid1){const err5={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}else{errors=_errs2;if(vErrors!==null){if(_errs2){vErrors.length=_errs2;}else{vErrors=null;}}}}if(data.uiConfig!==undefined){let data2=data.uiConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.size!==undefined){let data3=data2.size;if(typeof data3!=="string"){const err6={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data3==="small"||data3==="large")){const err7={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema33.properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data2.breakRow!==undefined){if(typeof data2.breakRow!=="boolean"){const err8={instancePath:instancePath+"/uiConfig/breakRow",schemaPath:"#/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/uiConfig",schemaPath:"#/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err10={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err11={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err12={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.value!==undefined){if(typeof data.value!=="string"){const err13={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err14={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.isFocused!==undefined){if(typeof data.isFocused!=="boolean"){const err15={instancePath:instancePath+"/isFocused",schemaPath:"#/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err16={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err17={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.toolTipType!==undefined){if(typeof data.toolTipType!=="string"){const err18={instancePath:instancePath+"/toolTipType",schemaPath:"#/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err19={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err20={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.labelActions!==undefined){let data16=data.labelActions;if(Array.isArray(data16)){const len0=data16.length;for(let i0=0;i0<len0;i0++){let data17=data16[i0];if(!(data17&&typeof data17=="object"&&!Array.isArray(data17))){const err21={instancePath:instancePath+"/labelActions/"+i0,schemaPath:"#/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath:instancePath+"/labelActions",schemaPath:"#/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.actions!==undefined){let data18=data.actions;if(Array.isArray(data18)){const len1=data18.length;for(let i1=0;i1<len1;i1++){let data19=data18[i1];if(!(data19&&typeof data19=="object"&&!Array.isArray(data19))){const err23={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}}else{const err24={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data.textOverflowMode!==undefined){let data20=data.textOverflowMode;if(typeof data20!=="string"){const err25={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}if(!(data20==="clip"||data20==="wrap")){const err26={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema33.properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.isRead!==undefined){if(typeof data.isRead!=="boolean"){const err27={instancePath:instancePath+"/isRead",schemaPath:"#/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err28={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err29={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}if(data.placeholder!==undefined){if(typeof data.placeholder!=="string"){const err30={instancePath:instancePath+"/placeholder",schemaPath:"#/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}}if(data.maxLength!==undefined){if(!(typeof data.maxLength=="number")){const err31={instancePath:instancePath+"/maxLength",schemaPath:"#/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err31];}else{vErrors.push(err31);}errors++;}}}else{const err32={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err32];}else{vErrors.push(err32);}errors++;}validate32.errors=vErrors;return errors===0;}exports["cc_fields_multi-select"]=validate33;const schema34={"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"array"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"subType":{"type":"string","enum":["plain","colored","Plain","ColorCoded"]},"placeholder":{"type":"string"},"options":{"type":"array","items":{"type":"object","properties":{"value":{"type":"string"},"optionActions":{"type":"array","items":{"type":"object"}}},"required":["value"]}}},"required":["name","value"],"$id":"cc_fields_multi-select"};function validate33(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_fields_multi-select" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.value===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.type!==undefined){let data0=data.type;const _errs2=errors;let valid1=false;const _errs3=errors;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.UIComponentName!==undefined){if(typeof data0.UIComponentName!=="string"){const err2={instancePath:instancePath+"/type/UIComponentName",schemaPath:"#/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}var _valid0=_errs3===errors;valid1=valid1||_valid0;if(!valid1){const _errs7=errors;if(typeof data0!=="string"){const err4={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}var _valid0=_errs7===errors;valid1=valid1||_valid0;}if(!valid1){const err5={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}else{errors=_errs2;if(vErrors!==null){if(_errs2){vErrors.length=_errs2;}else{vErrors=null;}}}}if(data.uiConfig!==undefined){let data2=data.uiConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.size!==undefined){let data3=data2.size;if(typeof data3!=="string"){const err6={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data3==="small"||data3==="large")){const err7={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema34.properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data2.breakRow!==undefined){if(typeof data2.breakRow!=="boolean"){const err8={instancePath:instancePath+"/uiConfig/breakRow",schemaPath:"#/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/uiConfig",schemaPath:"#/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err10={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err11={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err12={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.value!==undefined){if(!Array.isArray(data.value)){const err13={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err14={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.isFocused!==undefined){if(typeof data.isFocused!=="boolean"){const err15={instancePath:instancePath+"/isFocused",schemaPath:"#/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err16={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err17={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.toolTipType!==undefined){if(typeof data.toolTipType!=="string"){const err18={instancePath:instancePath+"/toolTipType",schemaPath:"#/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err19={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err20={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.labelActions!==undefined){let data16=data.labelActions;if(Array.isArray(data16)){const len0=data16.length;for(let i0=0;i0<len0;i0++){let data17=data16[i0];if(!(data17&&typeof data17=="object"&&!Array.isArray(data17))){const err21={instancePath:instancePath+"/labelActions/"+i0,schemaPath:"#/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath:instancePath+"/labelActions",schemaPath:"#/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.actions!==undefined){let data18=data.actions;if(Array.isArray(data18)){const len1=data18.length;for(let i1=0;i1<len1;i1++){let data19=data18[i1];if(!(data19&&typeof data19=="object"&&!Array.isArray(data19))){const err23={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}}else{const err24={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data.textOverflowMode!==undefined){let data20=data.textOverflowMode;if(typeof data20!=="string"){const err25={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}if(!(data20==="clip"||data20==="wrap")){const err26={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema34.properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.isRead!==undefined){if(typeof data.isRead!=="boolean"){const err27={instancePath:instancePath+"/isRead",schemaPath:"#/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err28={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err29={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}if(data.subType!==undefined){let data24=data.subType;if(typeof data24!=="string"){const err30={instancePath:instancePath+"/subType",schemaPath:"#/properties/subType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}if(!(data24==="plain"||data24==="colored"||data24==="Plain"||data24==="ColorCoded")){const err31={instancePath:instancePath+"/subType",schemaPath:"#/properties/subType/enum",keyword:"enum",params:{allowedValues:schema34.properties.subType.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err31];}else{vErrors.push(err31);}errors++;}}if(data.placeholder!==undefined){if(typeof data.placeholder!=="string"){const err32={instancePath:instancePath+"/placeholder",schemaPath:"#/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err32];}else{vErrors.push(err32);}errors++;}}if(data.options!==undefined){let data26=data.options;if(Array.isArray(data26)){const len2=data26.length;for(let i2=0;i2<len2;i2++){let data27=data26[i2];if(data27&&typeof data27=="object"&&!Array.isArray(data27)){if(data27.value===undefined){const err33={instancePath:instancePath+"/options/"+i2,schemaPath:"#/properties/options/items/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err33];}else{vErrors.push(err33);}errors++;}if(data27.value!==undefined){if(typeof data27.value!=="string"){const err34={instancePath:instancePath+"/options/"+i2+"/value",schemaPath:"#/properties/options/items/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err34];}else{vErrors.push(err34);}errors++;}}if(data27.optionActions!==undefined){let data29=data27.optionActions;if(Array.isArray(data29)){const len3=data29.length;for(let i3=0;i3<len3;i3++){let data30=data29[i3];if(!(data30&&typeof data30=="object"&&!Array.isArray(data30))){const err35={instancePath:instancePath+"/options/"+i2+"/optionActions/"+i3,schemaPath:"#/properties/options/items/properties/optionActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err35];}else{vErrors.push(err35);}errors++;}}}else{const err36={instancePath:instancePath+"/options/"+i2+"/optionActions",schemaPath:"#/properties/options/items/properties/optionActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err36];}else{vErrors.push(err36);}errors++;}}}else{const err37={instancePath:instancePath+"/options/"+i2,schemaPath:"#/properties/options/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err37];}else{vErrors.push(err37);}errors++;}}}else{const err38={instancePath:instancePath+"/options",schemaPath:"#/properties/options/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err38];}else{vErrors.push(err38);}errors++;}}}else{const err39={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err39];}else{vErrors.push(err39);}errors++;}validate33.errors=vErrors;return errors===0;}exports.cc_fields_name=validate34;const schema35={"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"object","properties":{"id":{"type":"string"},"value":{"type":"string"},"url":{"type":"string"},"isPreventDefault":{"type":"boolean"}},"required":["value","url"]},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"}},"required":["name","value"],"$id":"cc_fields_name"};function validate34(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_fields_name" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.value===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.type!==undefined){let data0=data.type;const _errs2=errors;let valid1=false;const _errs3=errors;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.UIComponentName!==undefined){if(typeof data0.UIComponentName!=="string"){const err2={instancePath:instancePath+"/type/UIComponentName",schemaPath:"#/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}var _valid0=_errs3===errors;valid1=valid1||_valid0;if(!valid1){const _errs7=errors;if(typeof data0!=="string"){const err4={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}var _valid0=_errs7===errors;valid1=valid1||_valid0;}if(!valid1){const err5={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}else{errors=_errs2;if(vErrors!==null){if(_errs2){vErrors.length=_errs2;}else{vErrors=null;}}}}if(data.uiConfig!==undefined){let data2=data.uiConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.size!==undefined){let data3=data2.size;if(typeof data3!=="string"){const err6={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data3==="small"||data3==="large")){const err7={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema35.properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data2.breakRow!==undefined){if(typeof data2.breakRow!=="boolean"){const err8={instancePath:instancePath+"/uiConfig/breakRow",schemaPath:"#/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/uiConfig",schemaPath:"#/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err10={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err11={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err12={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.value!==undefined){let data8=data.value;if(data8&&typeof data8=="object"&&!Array.isArray(data8)){if(data8.value===undefined){const err13={instancePath:instancePath+"/value",schemaPath:"#/properties/value/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}if(data8.url===undefined){const err14={instancePath:instancePath+"/value",schemaPath:"#/properties/value/required",keyword:"required",params:{missingProperty:"url"},message:"must have required property '"+"url"+"'"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}if(data8.id!==undefined){if(typeof data8.id!=="string"){const err15={instancePath:instancePath+"/value/id",schemaPath:"#/properties/value/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data8.value!==undefined){if(typeof data8.value!=="string"){const err16={instancePath:instancePath+"/value/value",schemaPath:"#/properties/value/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data8.url!==undefined){if(typeof data8.url!=="string"){const err17={instancePath:instancePath+"/value/url",schemaPath:"#/properties/value/properties/url/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data8.isPreventDefault!==undefined){if(typeof data8.isPreventDefault!=="boolean"){const err18={instancePath:instancePath+"/value/isPreventDefault",schemaPath:"#/properties/value/properties/isPreventDefault/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}}else{const err19={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err20={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.isFocused!==undefined){if(typeof data.isFocused!=="boolean"){const err21={instancePath:instancePath+"/isFocused",schemaPath:"#/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err22={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err23={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}if(data.toolTipType!==undefined){if(typeof data.toolTipType!=="string"){const err24={instancePath:instancePath+"/toolTipType",schemaPath:"#/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err25={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err26={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.labelActions!==undefined){let data20=data.labelActions;if(Array.isArray(data20)){const len0=data20.length;for(let i0=0;i0<len0;i0++){let data21=data20[i0];if(!(data21&&typeof data21=="object"&&!Array.isArray(data21))){const err27={instancePath:instancePath+"/labelActions/"+i0,schemaPath:"#/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}}else{const err28={instancePath:instancePath+"/labelActions",schemaPath:"#/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data.actions!==undefined){let data22=data.actions;if(Array.isArray(data22)){const len1=data22.length;for(let i1=0;i1<len1;i1++){let data23=data22[i1];if(!(data23&&typeof data23=="object"&&!Array.isArray(data23))){const err29={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}}else{const err30={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}}if(data.textOverflowMode!==undefined){let data24=data.textOverflowMode;if(typeof data24!=="string"){const err31={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err31];}else{vErrors.push(err31);}errors++;}if(!(data24==="clip"||data24==="wrap")){const err32={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema35.properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err32];}else{vErrors.push(err32);}errors++;}}if(data.isRead!==undefined){if(typeof data.isRead!=="boolean"){const err33={instancePath:instancePath+"/isRead",schemaPath:"#/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err33];}else{vErrors.push(err33);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err34={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err34];}else{vErrors.push(err34);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err35={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err35];}else{vErrors.push(err35);}errors++;}}}else{const err36={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err36];}else{vErrors.push(err36);}errors++;}validate34.errors=vErrors;return errors===0;}exports.cc_fields_number=validate35;const schema36={"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":["string","number"]},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"maxLength":{"type":"number"},"ePHI":{"type":"boolean"}},"required":["name","value"],"$id":"cc_fields_number"};function validate35(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_fields_number" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.value===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.type!==undefined){let data0=data.type;const _errs2=errors;let valid1=false;const _errs3=errors;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.UIComponentName!==undefined){if(typeof data0.UIComponentName!=="string"){const err2={instancePath:instancePath+"/type/UIComponentName",schemaPath:"#/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}var _valid0=_errs3===errors;valid1=valid1||_valid0;if(!valid1){const _errs7=errors;if(typeof data0!=="string"){const err4={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}var _valid0=_errs7===errors;valid1=valid1||_valid0;}if(!valid1){const err5={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}else{errors=_errs2;if(vErrors!==null){if(_errs2){vErrors.length=_errs2;}else{vErrors=null;}}}}if(data.uiConfig!==undefined){let data2=data.uiConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.size!==undefined){let data3=data2.size;if(typeof data3!=="string"){const err6={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data3==="small"||data3==="large")){const err7={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema36.properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data2.breakRow!==undefined){if(typeof data2.breakRow!=="boolean"){const err8={instancePath:instancePath+"/uiConfig/breakRow",schemaPath:"#/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/uiConfig",schemaPath:"#/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err10={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err11={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err12={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.value!==undefined){let data8=data.value;if(typeof data8!=="string"&&!(typeof data8=="number")){const err13={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:schema36.properties.value.type},message:"must be string,number"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err14={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.isFocused!==undefined){if(typeof data.isFocused!=="boolean"){const err15={instancePath:instancePath+"/isFocused",schemaPath:"#/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err16={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err17={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.toolTipType!==undefined){if(typeof data.toolTipType!=="string"){const err18={instancePath:instancePath+"/toolTipType",schemaPath:"#/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err19={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err20={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.labelActions!==undefined){let data16=data.labelActions;if(Array.isArray(data16)){const len0=data16.length;for(let i0=0;i0<len0;i0++){let data17=data16[i0];if(!(data17&&typeof data17=="object"&&!Array.isArray(data17))){const err21={instancePath:instancePath+"/labelActions/"+i0,schemaPath:"#/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath:instancePath+"/labelActions",schemaPath:"#/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.actions!==undefined){let data18=data.actions;if(Array.isArray(data18)){const len1=data18.length;for(let i1=0;i1<len1;i1++){let data19=data18[i1];if(!(data19&&typeof data19=="object"&&!Array.isArray(data19))){const err23={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}}else{const err24={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data.textOverflowMode!==undefined){let data20=data.textOverflowMode;if(typeof data20!=="string"){const err25={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}if(!(data20==="clip"||data20==="wrap")){const err26={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema36.properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.isRead!==undefined){if(typeof data.isRead!=="boolean"){const err27={instancePath:instancePath+"/isRead",schemaPath:"#/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err28={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err29={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}if(data.placeholder!==undefined){if(typeof data.placeholder!=="string"){const err30={instancePath:instancePath+"/placeholder",schemaPath:"#/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}}if(data.maxLength!==undefined){if(!(typeof data.maxLength=="number")){const err31={instancePath:instancePath+"/maxLength",schemaPath:"#/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err31];}else{vErrors.push(err31);}errors++;}}if(data.ePHI!==undefined){if(typeof data.ePHI!=="boolean"){const err32={instancePath:instancePath+"/ePHI",schemaPath:"#/properties/ePHI/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err32];}else{vErrors.push(err32);}errors++;}}}else{const err33={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err33];}else{vErrors.push(err33);}errors++;}validate35.errors=vErrors;return errors===0;}exports.cc_fields_percent=validate36;const schema37={"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"ePHI":{"type":"boolean"}},"required":["name","value"],"$id":"cc_fields_percent"};function validate36(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_fields_percent" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.value===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.type!==undefined){let data0=data.type;const _errs2=errors;let valid1=false;const _errs3=errors;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.UIComponentName!==undefined){if(typeof data0.UIComponentName!=="string"){const err2={instancePath:instancePath+"/type/UIComponentName",schemaPath:"#/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}var _valid0=_errs3===errors;valid1=valid1||_valid0;if(!valid1){const _errs7=errors;if(typeof data0!=="string"){const err4={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}var _valid0=_errs7===errors;valid1=valid1||_valid0;}if(!valid1){const err5={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}else{errors=_errs2;if(vErrors!==null){if(_errs2){vErrors.length=_errs2;}else{vErrors=null;}}}}if(data.uiConfig!==undefined){let data2=data.uiConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.size!==undefined){let data3=data2.size;if(typeof data3!=="string"){const err6={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data3==="small"||data3==="large")){const err7={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema37.properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data2.breakRow!==undefined){if(typeof data2.breakRow!=="boolean"){const err8={instancePath:instancePath+"/uiConfig/breakRow",schemaPath:"#/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/uiConfig",schemaPath:"#/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err10={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err11={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err12={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.value!==undefined){if(typeof data.value!=="string"){const err13={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err14={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.isFocused!==undefined){if(typeof data.isFocused!=="boolean"){const err15={instancePath:instancePath+"/isFocused",schemaPath:"#/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err16={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err17={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.toolTipType!==undefined){if(typeof data.toolTipType!=="string"){const err18={instancePath:instancePath+"/toolTipType",schemaPath:"#/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err19={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err20={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.labelActions!==undefined){let data16=data.labelActions;if(Array.isArray(data16)){const len0=data16.length;for(let i0=0;i0<len0;i0++){let data17=data16[i0];if(!(data17&&typeof data17=="object"&&!Array.isArray(data17))){const err21={instancePath:instancePath+"/labelActions/"+i0,schemaPath:"#/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath:instancePath+"/labelActions",schemaPath:"#/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.actions!==undefined){let data18=data.actions;if(Array.isArray(data18)){const len1=data18.length;for(let i1=0;i1<len1;i1++){let data19=data18[i1];if(!(data19&&typeof data19=="object"&&!Array.isArray(data19))){const err23={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}}else{const err24={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data.textOverflowMode!==undefined){let data20=data.textOverflowMode;if(typeof data20!=="string"){const err25={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}if(!(data20==="clip"||data20==="wrap")){const err26={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema37.properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.isRead!==undefined){if(typeof data.isRead!=="boolean"){const err27={instancePath:instancePath+"/isRead",schemaPath:"#/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err28={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err29={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}if(data.placeholder!==undefined){if(typeof data.placeholder!=="string"){const err30={instancePath:instancePath+"/placeholder",schemaPath:"#/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}}if(data.ePHI!==undefined){if(typeof data.ePHI!=="boolean"){const err31={instancePath:instancePath+"/ePHI",schemaPath:"#/properties/ePHI/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err31];}else{vErrors.push(err31);}errors++;}}}else{const err32={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err32];}else{vErrors.push(err32);}errors++;}validate36.errors=vErrors;return errors===0;}exports.cc_fields_phone=validate37;const schema38={"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"maxLength":{"type":"number"},"ePHI":{"type":"boolean"}},"required":["name","value"],"$id":"cc_fields_phone"};function validate37(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_fields_phone" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.value===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.type!==undefined){let data0=data.type;const _errs2=errors;let valid1=false;const _errs3=errors;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.UIComponentName!==undefined){if(typeof data0.UIComponentName!=="string"){const err2={instancePath:instancePath+"/type/UIComponentName",schemaPath:"#/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}var _valid0=_errs3===errors;valid1=valid1||_valid0;if(!valid1){const _errs7=errors;if(typeof data0!=="string"){const err4={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}var _valid0=_errs7===errors;valid1=valid1||_valid0;}if(!valid1){const err5={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}else{errors=_errs2;if(vErrors!==null){if(_errs2){vErrors.length=_errs2;}else{vErrors=null;}}}}if(data.uiConfig!==undefined){let data2=data.uiConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.size!==undefined){let data3=data2.size;if(typeof data3!=="string"){const err6={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data3==="small"||data3==="large")){const err7={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema38.properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data2.breakRow!==undefined){if(typeof data2.breakRow!=="boolean"){const err8={instancePath:instancePath+"/uiConfig/breakRow",schemaPath:"#/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/uiConfig",schemaPath:"#/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err10={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err11={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err12={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.value!==undefined){if(typeof data.value!=="string"){const err13={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err14={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.isFocused!==undefined){if(typeof data.isFocused!=="boolean"){const err15={instancePath:instancePath+"/isFocused",schemaPath:"#/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err16={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err17={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.toolTipType!==undefined){if(typeof data.toolTipType!=="string"){const err18={instancePath:instancePath+"/toolTipType",schemaPath:"#/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err19={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err20={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.labelActions!==undefined){let data16=data.labelActions;if(Array.isArray(data16)){const len0=data16.length;for(let i0=0;i0<len0;i0++){let data17=data16[i0];if(!(data17&&typeof data17=="object"&&!Array.isArray(data17))){const err21={instancePath:instancePath+"/labelActions/"+i0,schemaPath:"#/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath:instancePath+"/labelActions",schemaPath:"#/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.actions!==undefined){let data18=data.actions;if(Array.isArray(data18)){const len1=data18.length;for(let i1=0;i1<len1;i1++){let data19=data18[i1];if(!(data19&&typeof data19=="object"&&!Array.isArray(data19))){const err23={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}}else{const err24={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data.textOverflowMode!==undefined){let data20=data.textOverflowMode;if(typeof data20!=="string"){const err25={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}if(!(data20==="clip"||data20==="wrap")){const err26={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema38.properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.isRead!==undefined){if(typeof data.isRead!=="boolean"){const err27={instancePath:instancePath+"/isRead",schemaPath:"#/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err28={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err29={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}if(data.placeholder!==undefined){if(typeof data.placeholder!=="string"){const err30={instancePath:instancePath+"/placeholder",schemaPath:"#/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}}if(data.maxLength!==undefined){if(!(typeof data.maxLength=="number")){const err31={instancePath:instancePath+"/maxLength",schemaPath:"#/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err31];}else{vErrors.push(err31);}errors++;}}if(data.ePHI!==undefined){if(typeof data.ePHI!=="boolean"){const err32={instancePath:instancePath+"/ePHI",schemaPath:"#/properties/ePHI/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err32];}else{vErrors.push(err32);}errors++;}}}else{const err33={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err33];}else{vErrors.push(err33);}errors++;}validate37.errors=vErrors;return errors===0;}exports["cc_fields_pick-list"]=validate38;const schema39={"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"subType":{"type":"string","enum":["plain","colored","colorcoded"]},"placeholder":{"type":"string"},"options":{"type":"array","items":{"type":"object","properties":{"value":{"type":"string"},"optionActions":{"type":"array","items":{"type":"object"}}},"required":["value"]}}},"required":["name","value"],"$id":"cc_fields_pick-list"};function validate38(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_fields_pick-list" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.value===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.type!==undefined){let data0=data.type;const _errs2=errors;let valid1=false;const _errs3=errors;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.UIComponentName!==undefined){if(typeof data0.UIComponentName!=="string"){const err2={instancePath:instancePath+"/type/UIComponentName",schemaPath:"#/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}var _valid0=_errs3===errors;valid1=valid1||_valid0;if(!valid1){const _errs7=errors;if(typeof data0!=="string"){const err4={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}var _valid0=_errs7===errors;valid1=valid1||_valid0;}if(!valid1){const err5={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}else{errors=_errs2;if(vErrors!==null){if(_errs2){vErrors.length=_errs2;}else{vErrors=null;}}}}if(data.uiConfig!==undefined){let data2=data.uiConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.size!==undefined){let data3=data2.size;if(typeof data3!=="string"){const err6={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data3==="small"||data3==="large")){const err7={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema39.properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data2.breakRow!==undefined){if(typeof data2.breakRow!=="boolean"){const err8={instancePath:instancePath+"/uiConfig/breakRow",schemaPath:"#/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/uiConfig",schemaPath:"#/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err10={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err11={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err12={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.value!==undefined){if(typeof data.value!=="string"){const err13={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err14={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.isFocused!==undefined){if(typeof data.isFocused!=="boolean"){const err15={instancePath:instancePath+"/isFocused",schemaPath:"#/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err16={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err17={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.toolTipType!==undefined){if(typeof data.toolTipType!=="string"){const err18={instancePath:instancePath+"/toolTipType",schemaPath:"#/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err19={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err20={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.labelActions!==undefined){let data16=data.labelActions;if(Array.isArray(data16)){const len0=data16.length;for(let i0=0;i0<len0;i0++){let data17=data16[i0];if(!(data17&&typeof data17=="object"&&!Array.isArray(data17))){const err21={instancePath:instancePath+"/labelActions/"+i0,schemaPath:"#/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath:instancePath+"/labelActions",schemaPath:"#/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.actions!==undefined){let data18=data.actions;if(Array.isArray(data18)){const len1=data18.length;for(let i1=0;i1<len1;i1++){let data19=data18[i1];if(!(data19&&typeof data19=="object"&&!Array.isArray(data19))){const err23={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}}else{const err24={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data.textOverflowMode!==undefined){let data20=data.textOverflowMode;if(typeof data20!=="string"){const err25={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}if(!(data20==="clip"||data20==="wrap")){const err26={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema39.properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.isRead!==undefined){if(typeof data.isRead!=="boolean"){const err27={instancePath:instancePath+"/isRead",schemaPath:"#/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err28={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err29={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}if(data.subType!==undefined){let data24=data.subType;if(typeof data24!=="string"){const err30={instancePath:instancePath+"/subType",schemaPath:"#/properties/subType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}if(!(data24==="plain"||data24==="colored"||data24==="colorcoded")){const err31={instancePath:instancePath+"/subType",schemaPath:"#/properties/subType/enum",keyword:"enum",params:{allowedValues:schema39.properties.subType.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err31];}else{vErrors.push(err31);}errors++;}}if(data.placeholder!==undefined){if(typeof data.placeholder!=="string"){const err32={instancePath:instancePath+"/placeholder",schemaPath:"#/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err32];}else{vErrors.push(err32);}errors++;}}if(data.options!==undefined){let data26=data.options;if(Array.isArray(data26)){const len2=data26.length;for(let i2=0;i2<len2;i2++){let data27=data26[i2];if(data27&&typeof data27=="object"&&!Array.isArray(data27)){if(data27.value===undefined){const err33={instancePath:instancePath+"/options/"+i2,schemaPath:"#/properties/options/items/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err33];}else{vErrors.push(err33);}errors++;}if(data27.value!==undefined){if(typeof data27.value!=="string"){const err34={instancePath:instancePath+"/options/"+i2+"/value",schemaPath:"#/properties/options/items/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err34];}else{vErrors.push(err34);}errors++;}}if(data27.optionActions!==undefined){let data29=data27.optionActions;if(Array.isArray(data29)){const len3=data29.length;for(let i3=0;i3<len3;i3++){let data30=data29[i3];if(!(data30&&typeof data30=="object"&&!Array.isArray(data30))){const err35={instancePath:instancePath+"/options/"+i2+"/optionActions/"+i3,schemaPath:"#/properties/options/items/properties/optionActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err35];}else{vErrors.push(err35);}errors++;}}}else{const err36={instancePath:instancePath+"/options/"+i2+"/optionActions",schemaPath:"#/properties/options/items/properties/optionActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err36];}else{vErrors.push(err36);}errors++;}}}else{const err37={instancePath:instancePath+"/options/"+i2,schemaPath:"#/properties/options/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err37];}else{vErrors.push(err37);}errors++;}}}else{const err38={instancePath:instancePath+"/options",schemaPath:"#/properties/options/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err38];}else{vErrors.push(err38);}errors++;}}}else{const err39={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err39];}else{vErrors.push(err39);}errors++;}validate38.errors=vErrors;return errors===0;}exports.cc_fields_text=validate39;const schema40={"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":["string","number"]},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"maxLength":{"type":"number"},"ePHI":{"type":"boolean"}},"required":["name","value"],"$id":"cc_fields_text"};function validate39(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_fields_text" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.value===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.type!==undefined){let data0=data.type;const _errs2=errors;let valid1=false;const _errs3=errors;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.UIComponentName!==undefined){if(typeof data0.UIComponentName!=="string"){const err2={instancePath:instancePath+"/type/UIComponentName",schemaPath:"#/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}var _valid0=_errs3===errors;valid1=valid1||_valid0;if(!valid1){const _errs7=errors;if(typeof data0!=="string"){const err4={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}var _valid0=_errs7===errors;valid1=valid1||_valid0;}if(!valid1){const err5={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}else{errors=_errs2;if(vErrors!==null){if(_errs2){vErrors.length=_errs2;}else{vErrors=null;}}}}if(data.uiConfig!==undefined){let data2=data.uiConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.size!==undefined){let data3=data2.size;if(typeof data3!=="string"){const err6={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data3==="small"||data3==="large")){const err7={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema40.properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data2.breakRow!==undefined){if(typeof data2.breakRow!=="boolean"){const err8={instancePath:instancePath+"/uiConfig/breakRow",schemaPath:"#/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/uiConfig",schemaPath:"#/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err10={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err11={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err12={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.value!==undefined){let data8=data.value;if(typeof data8!=="string"&&!(typeof data8=="number")){const err13={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:schema40.properties.value.type},message:"must be string,number"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err14={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.isFocused!==undefined){if(typeof data.isFocused!=="boolean"){const err15={instancePath:instancePath+"/isFocused",schemaPath:"#/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err16={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err17={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.toolTipType!==undefined){if(typeof data.toolTipType!=="string"){const err18={instancePath:instancePath+"/toolTipType",schemaPath:"#/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err19={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err20={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.labelActions!==undefined){let data16=data.labelActions;if(Array.isArray(data16)){const len0=data16.length;for(let i0=0;i0<len0;i0++){let data17=data16[i0];if(!(data17&&typeof data17=="object"&&!Array.isArray(data17))){const err21={instancePath:instancePath+"/labelActions/"+i0,schemaPath:"#/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath:instancePath+"/labelActions",schemaPath:"#/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.actions!==undefined){let data18=data.actions;if(Array.isArray(data18)){const len1=data18.length;for(let i1=0;i1<len1;i1++){let data19=data18[i1];if(!(data19&&typeof data19=="object"&&!Array.isArray(data19))){const err23={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}}else{const err24={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data.textOverflowMode!==undefined){let data20=data.textOverflowMode;if(typeof data20!=="string"){const err25={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}if(!(data20==="clip"||data20==="wrap")){const err26={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema40.properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.isRead!==undefined){if(typeof data.isRead!=="boolean"){const err27={instancePath:instancePath+"/isRead",schemaPath:"#/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err28={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err29={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}if(data.placeholder!==undefined){if(typeof data.placeholder!=="string"){const err30={instancePath:instancePath+"/placeholder",schemaPath:"#/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}}if(data.maxLength!==undefined){if(!(typeof data.maxLength=="number")){const err31={instancePath:instancePath+"/maxLength",schemaPath:"#/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err31];}else{vErrors.push(err31);}errors++;}}if(data.ePHI!==undefined){if(typeof data.ePHI!=="boolean"){const err32={instancePath:instancePath+"/ePHI",schemaPath:"#/properties/ePHI/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err32];}else{vErrors.push(err32);}errors++;}}}else{const err33={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err33];}else{vErrors.push(err33);}errors++;}validate39.errors=vErrors;return errors===0;}exports.cc_fields_url=validate40;const schema41={"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"maxLength":{"type":"number"},"placeholder":{"type":"string"},"ePHI":{"type":"boolean"}},"required":["name","value"],"$id":"cc_fields_url"};function validate40(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_fields_url" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.name===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.value===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.type!==undefined){let data0=data.type;const _errs2=errors;let valid1=false;const _errs3=errors;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.UIComponentName!==undefined){if(typeof data0.UIComponentName!=="string"){const err2={instancePath:instancePath+"/type/UIComponentName",schemaPath:"#/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}var _valid0=_errs3===errors;valid1=valid1||_valid0;if(!valid1){const _errs7=errors;if(typeof data0!=="string"){const err4={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}var _valid0=_errs7===errors;valid1=valid1||_valid0;}if(!valid1){const err5={instancePath:instancePath+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}else{errors=_errs2;if(vErrors!==null){if(_errs2){vErrors.length=_errs2;}else{vErrors=null;}}}}if(data.uiConfig!==undefined){let data2=data.uiConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.size!==undefined){let data3=data2.size;if(typeof data3!=="string"){const err6={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data3==="small"||data3==="large")){const err7={instancePath:instancePath+"/uiConfig/size",schemaPath:"#/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema41.properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data2.breakRow!==undefined){if(typeof data2.breakRow!=="boolean"){const err8={instancePath:instancePath+"/uiConfig/breakRow",schemaPath:"#/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/uiConfig",schemaPath:"#/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err10={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err11={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err12={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.value!==undefined){if(typeof data.value!=="string"){const err13={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err14={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.isFocused!==undefined){if(typeof data.isFocused!=="boolean"){const err15={instancePath:instancePath+"/isFocused",schemaPath:"#/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err16={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err17={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.toolTipType!==undefined){if(typeof data.toolTipType!=="string"){const err18={instancePath:instancePath+"/toolTipType",schemaPath:"#/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err19={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err20={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.labelActions!==undefined){let data16=data.labelActions;if(Array.isArray(data16)){const len0=data16.length;for(let i0=0;i0<len0;i0++){let data17=data16[i0];if(!(data17&&typeof data17=="object"&&!Array.isArray(data17))){const err21={instancePath:instancePath+"/labelActions/"+i0,schemaPath:"#/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath:instancePath+"/labelActions",schemaPath:"#/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.actions!==undefined){let data18=data.actions;if(Array.isArray(data18)){const len1=data18.length;for(let i1=0;i1<len1;i1++){let data19=data18[i1];if(!(data19&&typeof data19=="object"&&!Array.isArray(data19))){const err23={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}}else{const err24={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data.textOverflowMode!==undefined){let data20=data.textOverflowMode;if(typeof data20!=="string"){const err25={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}if(!(data20==="clip"||data20==="wrap")){const err26={instancePath:instancePath+"/textOverflowMode",schemaPath:"#/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema41.properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.isRead!==undefined){if(typeof data.isRead!=="boolean"){const err27={instancePath:instancePath+"/isRead",schemaPath:"#/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err28={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err29={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}if(data.maxLength!==undefined){if(!(typeof data.maxLength=="number")){const err30={instancePath:instancePath+"/maxLength",schemaPath:"#/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}}if(data.placeholder!==undefined){if(typeof data.placeholder!=="string"){const err31={instancePath:instancePath+"/placeholder",schemaPath:"#/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err31];}else{vErrors.push(err31);}errors++;}}if(data.ePHI!==undefined){if(typeof data.ePHI!=="boolean"){const err32={instancePath:instancePath+"/ePHI",schemaPath:"#/properties/ePHI/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err32];}else{vErrors.push(err32);}errors++;}}}else{const err33={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err33];}else{vErrors.push(err33);}errors++;}validate40.errors=vErrors;return errors===0;}exports["cc_floating-pagination"]=validate41;const schema42={"type":"object","properties":{"text":{"type":"string"},"hasScrollControls":{"type":"boolean"},"scrollToUpTooltip":{"type":"string"},"scrollToDownTooltip":{"type":"string"},"isScrollToUpDisabled":{"type":"boolean"},"isScrollToDownDisabled":{"type":"boolean"}},"required":[],"$id":"cc_floating-pagination"};function validate41(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_floating-pagination" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.text!==undefined){if(typeof data.text!=="string"){const err0={instancePath:instancePath+"/text",schemaPath:"#/properties/text/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data.hasScrollControls!==undefined){if(typeof data.hasScrollControls!=="boolean"){const err1={instancePath:instancePath+"/hasScrollControls",schemaPath:"#/properties/hasScrollControls/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.scrollToUpTooltip!==undefined){if(typeof data.scrollToUpTooltip!=="string"){const err2={instancePath:instancePath+"/scrollToUpTooltip",schemaPath:"#/properties/scrollToUpTooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.scrollToDownTooltip!==undefined){if(typeof data.scrollToDownTooltip!=="string"){const err3={instancePath:instancePath+"/scrollToDownTooltip",schemaPath:"#/properties/scrollToDownTooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.isScrollToUpDisabled!==undefined){if(typeof data.isScrollToUpDisabled!=="boolean"){const err4={instancePath:instancePath+"/isScrollToUpDisabled",schemaPath:"#/properties/isScrollToUpDisabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.isScrollToDownDisabled!==undefined){if(typeof data.isScrollToDownDisabled!=="boolean"){const err5={instancePath:instancePath+"/isScrollToDownDisabled",schemaPath:"#/properties/isScrollToDownDisabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}}else{const err6={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}validate41.errors=vErrors;return errors===0;}exports.cc_form=validate42;const schema43={"type":"object","properties":{"isHeaderEnabled":{"type":"boolean"},"isFooterEnabled":{"type":"boolean"},"headerLeftActions":{"type":"array"},"headerRightActions":{"type":"array"},"footerLeftActions":{"type":"array"},"footerRightActions":{"type":"array"},"rightPanel":{"type":"object","properties":{"componentName":{"type":"string"},"properties":{"type":"object"}}},"sections":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"title":{"type":"string","maxLength":255,"pattern":"^[a-zA-Z0-9 _]*$"},"name":{"type":"string"},"description":{"type":"string","maxLength":10000},"headerActions":{"type":"array","items":{"type":"object"}},"titleActions":{"type":"array","items":{"type":"object"}},"isCollapsed":{"type":"boolean"},"isVisible":{"type":"boolean"},"type":{"type":"string"},"additionalDetails":{"type":"object"},"clientScripts":{"type":"array"},"fields":{"type":"array","minItems":0,"items":{"type":"object","anyOf":[{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":["string","number"]},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"maxLength":{"type":"number"},"ePHI":{"type":"boolean"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"maxLength":{"type":"number"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"boolean"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"maxLength":{"type":"number"},"currencySymbol":{"type":"string"},"currencyLocale":{"type":"string"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"maxLength":{"type":"number"},"ePHI":{"type":"boolean"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"maxLength":{"type":"number"},"placeholder":{"type":"string"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"lookup":{"type":"object"},"maxLength":{"type":"number"}},"required":["name"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"array"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"subType":{"type":"string","enum":["plain","colored","Plain","ColorCoded"]},"placeholder":{"type":"string"},"options":{"type":"array","items":{"type":"object","properties":{"value":{"type":"string"},"optionActions":{"type":"array","items":{"type":"object"}}},"required":["value"]}}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":["string","number"]},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"maxLength":{"type":"number"},"ePHI":{"type":"boolean"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"ePHI":{"type":"boolean"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"maxLength":{"type":"number"},"ePHI":{"type":"boolean"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"subType":{"type":"string","enum":["plain","colored","colorcoded"]},"placeholder":{"type":"string"},"options":{"type":"array","items":{"type":"object","properties":{"value":{"type":"string"},"optionActions":{"type":"array","items":{"type":"object"}}},"required":["value"]}}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"maxLength":{"type":"number"},"placeholder":{"type":"string"},"ePHI":{"type":"boolean"}},"required":["name","value"]},{"type":"object","properties":{"type":{"type":"string"},"value":{"type":"string"}},"required":["type","value"]}]}}},"required":[]}},"isLoading":{"type":"boolean"}},"required":[],"$id":"cc_form"};const func2=require("ajv/dist/runtime/ucs2length").default;const pattern0=new RegExp("^[a-zA-Z0-9 _]*$","u");function validate42(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_form" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.isHeaderEnabled!==undefined){if(typeof data.isHeaderEnabled!=="boolean"){const err0={instancePath:instancePath+"/isHeaderEnabled",schemaPath:"#/properties/isHeaderEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data.isFooterEnabled!==undefined){if(typeof data.isFooterEnabled!=="boolean"){const err1={instancePath:instancePath+"/isFooterEnabled",schemaPath:"#/properties/isFooterEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.headerLeftActions!==undefined){if(!Array.isArray(data.headerLeftActions)){const err2={instancePath:instancePath+"/headerLeftActions",schemaPath:"#/properties/headerLeftActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.headerRightActions!==undefined){if(!Array.isArray(data.headerRightActions)){const err3={instancePath:instancePath+"/headerRightActions",schemaPath:"#/properties/headerRightActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.footerLeftActions!==undefined){if(!Array.isArray(data.footerLeftActions)){const err4={instancePath:instancePath+"/footerLeftActions",schemaPath:"#/properties/footerLeftActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.footerRightActions!==undefined){if(!Array.isArray(data.footerRightActions)){const err5={instancePath:instancePath+"/footerRightActions",schemaPath:"#/properties/footerRightActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data.rightPanel!==undefined){let data6=data.rightPanel;if(data6&&typeof data6=="object"&&!Array.isArray(data6)){if(data6.componentName!==undefined){if(typeof data6.componentName!=="string"){const err6={instancePath:instancePath+"/rightPanel/componentName",schemaPath:"#/properties/rightPanel/properties/componentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data6.properties!==undefined){let data8=data6.properties;if(!(data8&&typeof data8=="object"&&!Array.isArray(data8))){const err7={instancePath:instancePath+"/rightPanel/properties",schemaPath:"#/properties/rightPanel/properties/properties/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}}else{const err8={instancePath:instancePath+"/rightPanel",schemaPath:"#/properties/rightPanel/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data.sections!==undefined){let data9=data.sections;if(Array.isArray(data9)){const len0=data9.length;for(let i0=0;i0<len0;i0++){let data10=data9[i0];if(data10&&typeof data10=="object"&&!Array.isArray(data10)){if(data10.id!==undefined){if(typeof data10.id!=="string"){const err9={instancePath:instancePath+"/sections/"+i0+"/id",schemaPath:"#/properties/sections/items/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data10.title!==undefined){let data12=data10.title;if(typeof data12==="string"){if(func2(data12)>255){const err10={instancePath:instancePath+"/sections/"+i0+"/title",schemaPath:"#/properties/sections/items/properties/title/maxLength",keyword:"maxLength",params:{limit:255},message:"must NOT have more than 255 characters"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}if(!pattern0.test(data12)){const err11={instancePath:instancePath+"/sections/"+i0+"/title",schemaPath:"#/properties/sections/items/properties/title/pattern",keyword:"pattern",params:{pattern:"^[a-zA-Z0-9 _]*$"},message:"must match pattern \""+"^[a-zA-Z0-9 _]*$"+"\""};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}else{const err12={instancePath:instancePath+"/sections/"+i0+"/title",schemaPath:"#/properties/sections/items/properties/title/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data10.name!==undefined){if(typeof data10.name!=="string"){const err13={instancePath:instancePath+"/sections/"+i0+"/name",schemaPath:"#/properties/sections/items/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data10.description!==undefined){let data14=data10.description;if(typeof data14==="string"){if(func2(data14)>10000){const err14={instancePath:instancePath+"/sections/"+i0+"/description",schemaPath:"#/properties/sections/items/properties/description/maxLength",keyword:"maxLength",params:{limit:10000},message:"must NOT have more than 10000 characters"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}else{const err15={instancePath:instancePath+"/sections/"+i0+"/description",schemaPath:"#/properties/sections/items/properties/description/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data10.headerActions!==undefined){let data15=data10.headerActions;if(Array.isArray(data15)){const len1=data15.length;for(let i1=0;i1<len1;i1++){let data16=data15[i1];if(!(data16&&typeof data16=="object"&&!Array.isArray(data16))){const err16={instancePath:instancePath+"/sections/"+i0+"/headerActions/"+i1,schemaPath:"#/properties/sections/items/properties/headerActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}}else{const err17={instancePath:instancePath+"/sections/"+i0+"/headerActions",schemaPath:"#/properties/sections/items/properties/headerActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data10.titleActions!==undefined){let data17=data10.titleActions;if(Array.isArray(data17)){const len2=data17.length;for(let i2=0;i2<len2;i2++){let data18=data17[i2];if(!(data18&&typeof data18=="object"&&!Array.isArray(data18))){const err18={instancePath:instancePath+"/sections/"+i0+"/titleActions/"+i2,schemaPath:"#/properties/sections/items/properties/titleActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}}else{const err19={instancePath:instancePath+"/sections/"+i0+"/titleActions",schemaPath:"#/properties/sections/items/properties/titleActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data10.isCollapsed!==undefined){if(typeof data10.isCollapsed!=="boolean"){const err20={instancePath:instancePath+"/sections/"+i0+"/isCollapsed",schemaPath:"#/properties/sections/items/properties/isCollapsed/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data10.isVisible!==undefined){if(typeof data10.isVisible!=="boolean"){const err21={instancePath:instancePath+"/sections/"+i0+"/isVisible",schemaPath:"#/properties/sections/items/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}if(data10.type!==undefined){if(typeof data10.type!=="string"){const err22={instancePath:instancePath+"/sections/"+i0+"/type",schemaPath:"#/properties/sections/items/properties/type/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data10.additionalDetails!==undefined){let data22=data10.additionalDetails;if(!(data22&&typeof data22=="object"&&!Array.isArray(data22))){const err23={instancePath:instancePath+"/sections/"+i0+"/additionalDetails",schemaPath:"#/properties/sections/items/properties/additionalDetails/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}if(data10.clientScripts!==undefined){if(!Array.isArray(data10.clientScripts)){const err24={instancePath:instancePath+"/sections/"+i0+"/clientScripts",schemaPath:"#/properties/sections/items/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data10.fields!==undefined){let data24=data10.fields;if(Array.isArray(data24)){if(data24.length<0){const err25={instancePath:instancePath+"/sections/"+i0+"/fields",schemaPath:"#/properties/sections/items/properties/fields/minItems",keyword:"minItems",params:{limit:0},message:"must NOT have fewer than 0 items"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}const len3=data24.length;for(let i3=0;i3<len3;i3++){let data25=data24[i3];if(!(data25&&typeof data25=="object"&&!Array.isArray(data25))){const err26={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}const _errs53=errors;let valid11=false;const _errs54=errors;if(data25&&typeof data25=="object"&&!Array.isArray(data25)){if(data25.name===undefined){const err27={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}if(data25.value===undefined){const err28={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}if(data25.type!==undefined){let data26=data25.type;const _errs57=errors;let valid13=false;const _errs58=errors;if(data26&&typeof data26=="object"&&!Array.isArray(data26)){if(data26.UIComponentName!==undefined){if(typeof data26.UIComponentName!=="string"){const err29={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type/UIComponentName",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}}else{const err30={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}var _valid1=_errs58===errors;valid13=valid13||_valid1;if(!valid13){const _errs62=errors;if(typeof data26!=="string"){const err31={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err31];}else{vErrors.push(err31);}errors++;}var _valid1=_errs62===errors;valid13=valid13||_valid1;}if(!valid13){const err32={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err32];}else{vErrors.push(err32);}errors++;}else{errors=_errs57;if(vErrors!==null){if(_errs57){vErrors.length=_errs57;}else{vErrors=null;}}}}if(data25.uiConfig!==undefined){let data28=data25.uiConfig;if(data28&&typeof data28=="object"&&!Array.isArray(data28)){if(data28.size!==undefined){let data29=data28.size;if(typeof data29!=="string"){const err33={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err33];}else{vErrors.push(err33);}errors++;}if(!(data29==="small"||data29==="large")){const err34={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[0].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err34];}else{vErrors.push(err34);}errors++;}}if(data28.breakRow!==undefined){if(typeof data28.breakRow!=="boolean"){const err35={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/breakRow",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err35];}else{vErrors.push(err35);}errors++;}}}else{const err36={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err36];}else{vErrors.push(err36);}errors++;}}if(data25.id!==undefined){if(typeof data25.id!=="string"){const err37={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/id",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err37];}else{vErrors.push(err37);}errors++;}}if(data25.name!==undefined){if(typeof data25.name!=="string"){const err38={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/name",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err38];}else{vErrors.push(err38);}errors++;}}if(data25.label!==undefined){if(typeof data25.label!=="string"){const err39={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/label",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err39];}else{vErrors.push(err39);}errors++;}}if(data25.value!==undefined){let data34=data25.value;if(typeof data34!=="string"&&!(typeof data34=="number")){const err40={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/value",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/value/type",keyword:"type",params:{type:schema43.properties.sections.items.properties.fields.items.anyOf[0].properties.value.type},message:"must be string,number"};if(vErrors===null){vErrors=[err40];}else{vErrors.push(err40);}errors++;}}if(data25.isVisible!==undefined){if(typeof data25.isVisible!=="boolean"){const err41={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isVisible",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err41];}else{vErrors.push(err41);}errors++;}}if(data25.isFocused!==undefined){if(typeof data25.isFocused!=="boolean"){const err42={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isFocused",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err42];}else{vErrors.push(err42);}errors++;}}if(data25.errorMessage!==undefined){if(typeof data25.errorMessage!=="string"){const err43={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/errorMessage",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err43];}else{vErrors.push(err43);}errors++;}}if(data25.tooltip!==undefined){if(typeof data25.tooltip!=="string"){const err44={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/tooltip",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err44];}else{vErrors.push(err44);}errors++;}}if(data25.toolTipType!==undefined){if(typeof data25.toolTipType!=="string"){const err45={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/toolTipType",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err45];}else{vErrors.push(err45);}errors++;}}if(data25.required!==undefined){if(typeof data25.required!=="boolean"){const err46={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/required",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err46];}else{vErrors.push(err46);}errors++;}}if(data25.disabled!==undefined){if(typeof data25.disabled!=="boolean"){const err47={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/disabled",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err47];}else{vErrors.push(err47);}errors++;}}if(data25.labelActions!==undefined){let data42=data25.labelActions;if(Array.isArray(data42)){const len4=data42.length;for(let i4=0;i4<len4;i4++){let data43=data42[i4];if(!(data43&&typeof data43=="object"&&!Array.isArray(data43))){const err48={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions/"+i4,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err48];}else{vErrors.push(err48);}errors++;}}}else{const err49={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err49];}else{vErrors.push(err49);}errors++;}}if(data25.actions!==undefined){let data44=data25.actions;if(Array.isArray(data44)){const len5=data44.length;for(let i5=0;i5<len5;i5++){let data45=data44[i5];if(!(data45&&typeof data45=="object"&&!Array.isArray(data45))){const err50={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions/"+i5,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err50];}else{vErrors.push(err50);}errors++;}}}else{const err51={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err51];}else{vErrors.push(err51);}errors++;}}if(data25.textOverflowMode!==undefined){let data46=data25.textOverflowMode;if(typeof data46!=="string"){const err52={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err52];}else{vErrors.push(err52);}errors++;}if(!(data46==="clip"||data46==="wrap")){const err53={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[0].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err53];}else{vErrors.push(err53);}errors++;}}if(data25.isRead!==undefined){if(typeof data25.isRead!=="boolean"){const err54={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isRead",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err54];}else{vErrors.push(err54);}errors++;}}if(data25.readonly!==undefined){if(typeof data25.readonly!=="boolean"){const err55={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/readonly",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err55];}else{vErrors.push(err55);}errors++;}}if(data25.clientScripts!==undefined){if(!Array.isArray(data25.clientScripts)){const err56={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/clientScripts",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err56];}else{vErrors.push(err56);}errors++;}}if(data25.placeholder!==undefined){if(typeof data25.placeholder!=="string"){const err57={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/placeholder",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err57];}else{vErrors.push(err57);}errors++;}}if(data25.maxLength!==undefined){if(!(typeof data25.maxLength=="number")){const err58={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/maxLength",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err58];}else{vErrors.push(err58);}errors++;}}if(data25.ePHI!==undefined){if(typeof data25.ePHI!=="boolean"){const err59={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/ePHI",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/properties/ePHI/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err59];}else{vErrors.push(err59);}errors++;}}}else{const err60={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err60];}else{vErrors.push(err60);}errors++;}var _valid0=_errs54===errors;valid11=valid11||_valid0;if(!valid11){const _errs114=errors;if(data25&&typeof data25=="object"&&!Array.isArray(data25)){if(data25.name===undefined){const err61={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err61];}else{vErrors.push(err61);}errors++;}if(data25.value===undefined){const err62={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err62];}else{vErrors.push(err62);}errors++;}if(data25.type!==undefined){let data53=data25.type;const _errs117=errors;let valid21=false;const _errs118=errors;if(data53&&typeof data53=="object"&&!Array.isArray(data53)){if(data53.UIComponentName!==undefined){if(typeof data53.UIComponentName!=="string"){const err63={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type/UIComponentName",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err63];}else{vErrors.push(err63);}errors++;}}}else{const err64={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err64];}else{vErrors.push(err64);}errors++;}var _valid2=_errs118===errors;valid21=valid21||_valid2;if(!valid21){const _errs122=errors;if(typeof data53!=="string"){const err65={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err65];}else{vErrors.push(err65);}errors++;}var _valid2=_errs122===errors;valid21=valid21||_valid2;}if(!valid21){const err66={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err66];}else{vErrors.push(err66);}errors++;}else{errors=_errs117;if(vErrors!==null){if(_errs117){vErrors.length=_errs117;}else{vErrors=null;}}}}if(data25.uiConfig!==undefined){let data55=data25.uiConfig;if(data55&&typeof data55=="object"&&!Array.isArray(data55)){if(data55.size!==undefined){let data56=data55.size;if(typeof data56!=="string"){const err67={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err67];}else{vErrors.push(err67);}errors++;}if(!(data56==="small"||data56==="large")){const err68={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[1].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err68];}else{vErrors.push(err68);}errors++;}}if(data55.breakRow!==undefined){if(typeof data55.breakRow!=="boolean"){const err69={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/breakRow",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err69];}else{vErrors.push(err69);}errors++;}}}else{const err70={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err70];}else{vErrors.push(err70);}errors++;}}if(data25.id!==undefined){if(typeof data25.id!=="string"){const err71={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/id",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err71];}else{vErrors.push(err71);}errors++;}}if(data25.name!==undefined){if(typeof data25.name!=="string"){const err72={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/name",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err72];}else{vErrors.push(err72);}errors++;}}if(data25.label!==undefined){if(typeof data25.label!=="string"){const err73={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/label",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err73];}else{vErrors.push(err73);}errors++;}}if(data25.value!==undefined){if(typeof data25.value!=="string"){const err74={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/value",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err74];}else{vErrors.push(err74);}errors++;}}if(data25.isVisible!==undefined){if(typeof data25.isVisible!=="boolean"){const err75={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isVisible",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err75];}else{vErrors.push(err75);}errors++;}}if(data25.isFocused!==undefined){if(typeof data25.isFocused!=="boolean"){const err76={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isFocused",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err76];}else{vErrors.push(err76);}errors++;}}if(data25.errorMessage!==undefined){if(typeof data25.errorMessage!=="string"){const err77={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/errorMessage",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err77];}else{vErrors.push(err77);}errors++;}}if(data25.tooltip!==undefined){if(typeof data25.tooltip!=="string"){const err78={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/tooltip",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err78];}else{vErrors.push(err78);}errors++;}}if(data25.toolTipType!==undefined){if(typeof data25.toolTipType!=="string"){const err79={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/toolTipType",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err79];}else{vErrors.push(err79);}errors++;}}if(data25.required!==undefined){if(typeof data25.required!=="boolean"){const err80={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/required",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err80];}else{vErrors.push(err80);}errors++;}}if(data25.disabled!==undefined){if(typeof data25.disabled!=="boolean"){const err81={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/disabled",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err81];}else{vErrors.push(err81);}errors++;}}if(data25.labelActions!==undefined){let data69=data25.labelActions;if(Array.isArray(data69)){const len6=data69.length;for(let i6=0;i6<len6;i6++){let data70=data69[i6];if(!(data70&&typeof data70=="object"&&!Array.isArray(data70))){const err82={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions/"+i6,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err82];}else{vErrors.push(err82);}errors++;}}}else{const err83={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err83];}else{vErrors.push(err83);}errors++;}}if(data25.actions!==undefined){let data71=data25.actions;if(Array.isArray(data71)){const len7=data71.length;for(let i7=0;i7<len7;i7++){let data72=data71[i7];if(!(data72&&typeof data72=="object"&&!Array.isArray(data72))){const err84={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions/"+i7,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err84];}else{vErrors.push(err84);}errors++;}}}else{const err85={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err85];}else{vErrors.push(err85);}errors++;}}if(data25.textOverflowMode!==undefined){let data73=data25.textOverflowMode;if(typeof data73!=="string"){const err86={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err86];}else{vErrors.push(err86);}errors++;}if(!(data73==="clip"||data73==="wrap")){const err87={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[1].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err87];}else{vErrors.push(err87);}errors++;}}if(data25.isRead!==undefined){if(typeof data25.isRead!=="boolean"){const err88={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isRead",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err88];}else{vErrors.push(err88);}errors++;}}if(data25.readonly!==undefined){if(typeof data25.readonly!=="boolean"){const err89={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/readonly",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err89];}else{vErrors.push(err89);}errors++;}}if(data25.clientScripts!==undefined){if(!Array.isArray(data25.clientScripts)){const err90={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/clientScripts",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err90];}else{vErrors.push(err90);}errors++;}}if(data25.placeholder!==undefined){if(typeof data25.placeholder!=="string"){const err91={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/placeholder",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err91];}else{vErrors.push(err91);}errors++;}}if(data25.maxLength!==undefined){if(!(typeof data25.maxLength=="number")){const err92={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/maxLength",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err92];}else{vErrors.push(err92);}errors++;}}}else{const err93={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/1/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err93];}else{vErrors.push(err93);}errors++;}var _valid0=_errs114===errors;valid11=valid11||_valid0;if(!valid11){const _errs172=errors;if(data25&&typeof data25=="object"&&!Array.isArray(data25)){if(data25.name===undefined){const err94={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err94];}else{vErrors.push(err94);}errors++;}if(data25.value===undefined){const err95={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err95];}else{vErrors.push(err95);}errors++;}if(data25.type!==undefined){let data79=data25.type;const _errs175=errors;let valid29=false;const _errs176=errors;if(data79&&typeof data79=="object"&&!Array.isArray(data79)){if(data79.UIComponentName!==undefined){if(typeof data79.UIComponentName!=="string"){const err96={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type/UIComponentName",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err96];}else{vErrors.push(err96);}errors++;}}}else{const err97={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err97];}else{vErrors.push(err97);}errors++;}var _valid3=_errs176===errors;valid29=valid29||_valid3;if(!valid29){const _errs180=errors;if(typeof data79!=="string"){const err98={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err98];}else{vErrors.push(err98);}errors++;}var _valid3=_errs180===errors;valid29=valid29||_valid3;}if(!valid29){const err99={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err99];}else{vErrors.push(err99);}errors++;}else{errors=_errs175;if(vErrors!==null){if(_errs175){vErrors.length=_errs175;}else{vErrors=null;}}}}if(data25.uiConfig!==undefined){let data81=data25.uiConfig;if(data81&&typeof data81=="object"&&!Array.isArray(data81)){if(data81.size!==undefined){let data82=data81.size;if(typeof data82!=="string"){const err100={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err100];}else{vErrors.push(err100);}errors++;}if(!(data82==="small"||data82==="large")){const err101={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[2].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err101];}else{vErrors.push(err101);}errors++;}}if(data81.breakRow!==undefined){if(typeof data81.breakRow!=="boolean"){const err102={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/breakRow",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err102];}else{vErrors.push(err102);}errors++;}}}else{const err103={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err103];}else{vErrors.push(err103);}errors++;}}if(data25.id!==undefined){if(typeof data25.id!=="string"){const err104={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/id",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err104];}else{vErrors.push(err104);}errors++;}}if(data25.name!==undefined){if(typeof data25.name!=="string"){const err105={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/name",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err105];}else{vErrors.push(err105);}errors++;}}if(data25.label!==undefined){if(typeof data25.label!=="string"){const err106={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/label",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err106];}else{vErrors.push(err106);}errors++;}}if(data25.value!==undefined){if(typeof data25.value!=="boolean"){const err107={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/value",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/value/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err107];}else{vErrors.push(err107);}errors++;}}if(data25.isVisible!==undefined){if(typeof data25.isVisible!=="boolean"){const err108={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isVisible",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err108];}else{vErrors.push(err108);}errors++;}}if(data25.isFocused!==undefined){if(typeof data25.isFocused!=="boolean"){const err109={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isFocused",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err109];}else{vErrors.push(err109);}errors++;}}if(data25.errorMessage!==undefined){if(typeof data25.errorMessage!=="string"){const err110={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/errorMessage",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err110];}else{vErrors.push(err110);}errors++;}}if(data25.tooltip!==undefined){if(typeof data25.tooltip!=="string"){const err111={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/tooltip",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err111];}else{vErrors.push(err111);}errors++;}}if(data25.toolTipType!==undefined){if(typeof data25.toolTipType!=="string"){const err112={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/toolTipType",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err112];}else{vErrors.push(err112);}errors++;}}if(data25.required!==undefined){if(typeof data25.required!=="boolean"){const err113={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/required",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err113];}else{vErrors.push(err113);}errors++;}}if(data25.disabled!==undefined){if(typeof data25.disabled!=="boolean"){const err114={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/disabled",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err114];}else{vErrors.push(err114);}errors++;}}if(data25.labelActions!==undefined){let data95=data25.labelActions;if(Array.isArray(data95)){const len8=data95.length;for(let i8=0;i8<len8;i8++){let data96=data95[i8];if(!(data96&&typeof data96=="object"&&!Array.isArray(data96))){const err115={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions/"+i8,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err115];}else{vErrors.push(err115);}errors++;}}}else{const err116={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err116];}else{vErrors.push(err116);}errors++;}}if(data25.actions!==undefined){let data97=data25.actions;if(Array.isArray(data97)){const len9=data97.length;for(let i9=0;i9<len9;i9++){let data98=data97[i9];if(!(data98&&typeof data98=="object"&&!Array.isArray(data98))){const err117={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions/"+i9,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err117];}else{vErrors.push(err117);}errors++;}}}else{const err118={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err118];}else{vErrors.push(err118);}errors++;}}if(data25.textOverflowMode!==undefined){let data99=data25.textOverflowMode;if(typeof data99!=="string"){const err119={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err119];}else{vErrors.push(err119);}errors++;}if(!(data99==="clip"||data99==="wrap")){const err120={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[2].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err120];}else{vErrors.push(err120);}errors++;}}if(data25.isRead!==undefined){if(typeof data25.isRead!=="boolean"){const err121={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isRead",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err121];}else{vErrors.push(err121);}errors++;}}if(data25.readonly!==undefined){if(typeof data25.readonly!=="boolean"){const err122={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/readonly",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err122];}else{vErrors.push(err122);}errors++;}}if(data25.clientScripts!==undefined){if(!Array.isArray(data25.clientScripts)){const err123={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/clientScripts",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err123];}else{vErrors.push(err123);}errors++;}}}else{const err124={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/2/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err124];}else{vErrors.push(err124);}errors++;}var _valid0=_errs172===errors;valid11=valid11||_valid0;if(!valid11){const _errs226=errors;if(data25&&typeof data25=="object"&&!Array.isArray(data25)){if(data25.name===undefined){const err125={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err125];}else{vErrors.push(err125);}errors++;}if(data25.value===undefined){const err126={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err126];}else{vErrors.push(err126);}errors++;}if(data25.type!==undefined){let data103=data25.type;const _errs229=errors;let valid37=false;const _errs230=errors;if(data103&&typeof data103=="object"&&!Array.isArray(data103)){if(data103.UIComponentName!==undefined){if(typeof data103.UIComponentName!=="string"){const err127={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type/UIComponentName",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err127];}else{vErrors.push(err127);}errors++;}}}else{const err128={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err128];}else{vErrors.push(err128);}errors++;}var _valid4=_errs230===errors;valid37=valid37||_valid4;if(!valid37){const _errs234=errors;if(typeof data103!=="string"){const err129={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err129];}else{vErrors.push(err129);}errors++;}var _valid4=_errs234===errors;valid37=valid37||_valid4;}if(!valid37){const err130={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err130];}else{vErrors.push(err130);}errors++;}else{errors=_errs229;if(vErrors!==null){if(_errs229){vErrors.length=_errs229;}else{vErrors=null;}}}}if(data25.uiConfig!==undefined){let data105=data25.uiConfig;if(data105&&typeof data105=="object"&&!Array.isArray(data105)){if(data105.size!==undefined){let data106=data105.size;if(typeof data106!=="string"){const err131={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err131];}else{vErrors.push(err131);}errors++;}if(!(data106==="small"||data106==="large")){const err132={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[3].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err132];}else{vErrors.push(err132);}errors++;}}if(data105.breakRow!==undefined){if(typeof data105.breakRow!=="boolean"){const err133={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/breakRow",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err133];}else{vErrors.push(err133);}errors++;}}}else{const err134={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err134];}else{vErrors.push(err134);}errors++;}}if(data25.id!==undefined){if(typeof data25.id!=="string"){const err135={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/id",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err135];}else{vErrors.push(err135);}errors++;}}if(data25.name!==undefined){if(typeof data25.name!=="string"){const err136={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/name",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err136];}else{vErrors.push(err136);}errors++;}}if(data25.label!==undefined){if(typeof data25.label!=="string"){const err137={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/label",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err137];}else{vErrors.push(err137);}errors++;}}if(data25.value!==undefined){if(typeof data25.value!=="string"){const err138={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/value",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err138];}else{vErrors.push(err138);}errors++;}}if(data25.isVisible!==undefined){if(typeof data25.isVisible!=="boolean"){const err139={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isVisible",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err139];}else{vErrors.push(err139);}errors++;}}if(data25.isFocused!==undefined){if(typeof data25.isFocused!=="boolean"){const err140={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isFocused",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err140];}else{vErrors.push(err140);}errors++;}}if(data25.errorMessage!==undefined){if(typeof data25.errorMessage!=="string"){const err141={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/errorMessage",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err141];}else{vErrors.push(err141);}errors++;}}if(data25.tooltip!==undefined){if(typeof data25.tooltip!=="string"){const err142={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/tooltip",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err142];}else{vErrors.push(err142);}errors++;}}if(data25.toolTipType!==undefined){if(typeof data25.toolTipType!=="string"){const err143={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/toolTipType",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err143];}else{vErrors.push(err143);}errors++;}}if(data25.required!==undefined){if(typeof data25.required!=="boolean"){const err144={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/required",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err144];}else{vErrors.push(err144);}errors++;}}if(data25.disabled!==undefined){if(typeof data25.disabled!=="boolean"){const err145={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/disabled",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err145];}else{vErrors.push(err145);}errors++;}}if(data25.labelActions!==undefined){let data119=data25.labelActions;if(Array.isArray(data119)){const len10=data119.length;for(let i10=0;i10<len10;i10++){let data120=data119[i10];if(!(data120&&typeof data120=="object"&&!Array.isArray(data120))){const err146={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions/"+i10,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err146];}else{vErrors.push(err146);}errors++;}}}else{const err147={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err147];}else{vErrors.push(err147);}errors++;}}if(data25.actions!==undefined){let data121=data25.actions;if(Array.isArray(data121)){const len11=data121.length;for(let i11=0;i11<len11;i11++){let data122=data121[i11];if(!(data122&&typeof data122=="object"&&!Array.isArray(data122))){const err148={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions/"+i11,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err148];}else{vErrors.push(err148);}errors++;}}}else{const err149={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err149];}else{vErrors.push(err149);}errors++;}}if(data25.textOverflowMode!==undefined){let data123=data25.textOverflowMode;if(typeof data123!=="string"){const err150={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err150];}else{vErrors.push(err150);}errors++;}if(!(data123==="clip"||data123==="wrap")){const err151={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[3].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err151];}else{vErrors.push(err151);}errors++;}}if(data25.isRead!==undefined){if(typeof data25.isRead!=="boolean"){const err152={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isRead",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err152];}else{vErrors.push(err152);}errors++;}}if(data25.readonly!==undefined){if(typeof data25.readonly!=="boolean"){const err153={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/readonly",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err153];}else{vErrors.push(err153);}errors++;}}if(data25.clientScripts!==undefined){if(!Array.isArray(data25.clientScripts)){const err154={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/clientScripts",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err154];}else{vErrors.push(err154);}errors++;}}if(data25.placeholder!==undefined){if(typeof data25.placeholder!=="string"){const err155={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/placeholder",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err155];}else{vErrors.push(err155);}errors++;}}if(data25.maxLength!==undefined){if(!(typeof data25.maxLength=="number")){const err156={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/maxLength",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err156];}else{vErrors.push(err156);}errors++;}}if(data25.currencySymbol!==undefined){if(typeof data25.currencySymbol!=="string"){const err157={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/currencySymbol",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/currencySymbol/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err157];}else{vErrors.push(err157);}errors++;}}if(data25.currencyLocale!==undefined){if(typeof data25.currencyLocale!=="string"){const err158={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/currencyLocale",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/properties/currencyLocale/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err158];}else{vErrors.push(err158);}errors++;}}}else{const err159={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/3/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err159];}else{vErrors.push(err159);}errors++;}var _valid0=_errs226===errors;valid11=valid11||_valid0;if(!valid11){const _errs288=errors;if(data25&&typeof data25=="object"&&!Array.isArray(data25)){if(data25.name===undefined){const err160={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err160];}else{vErrors.push(err160);}errors++;}if(data25.value===undefined){const err161={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err161];}else{vErrors.push(err161);}errors++;}if(data25.type!==undefined){let data131=data25.type;const _errs291=errors;let valid45=false;const _errs292=errors;if(data131&&typeof data131=="object"&&!Array.isArray(data131)){if(data131.UIComponentName!==undefined){if(typeof data131.UIComponentName!=="string"){const err162={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type/UIComponentName",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err162];}else{vErrors.push(err162);}errors++;}}}else{const err163={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err163];}else{vErrors.push(err163);}errors++;}var _valid5=_errs292===errors;valid45=valid45||_valid5;if(!valid45){const _errs296=errors;if(typeof data131!=="string"){const err164={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err164];}else{vErrors.push(err164);}errors++;}var _valid5=_errs296===errors;valid45=valid45||_valid5;}if(!valid45){const err165={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err165];}else{vErrors.push(err165);}errors++;}else{errors=_errs291;if(vErrors!==null){if(_errs291){vErrors.length=_errs291;}else{vErrors=null;}}}}if(data25.uiConfig!==undefined){let data133=data25.uiConfig;if(data133&&typeof data133=="object"&&!Array.isArray(data133)){if(data133.size!==undefined){let data134=data133.size;if(typeof data134!=="string"){const err166={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err166];}else{vErrors.push(err166);}errors++;}if(!(data134==="small"||data134==="large")){const err167={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[4].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err167];}else{vErrors.push(err167);}errors++;}}if(data133.breakRow!==undefined){if(typeof data133.breakRow!=="boolean"){const err168={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/breakRow",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err168];}else{vErrors.push(err168);}errors++;}}}else{const err169={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err169];}else{vErrors.push(err169);}errors++;}}if(data25.id!==undefined){if(typeof data25.id!=="string"){const err170={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/id",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err170];}else{vErrors.push(err170);}errors++;}}if(data25.name!==undefined){if(typeof data25.name!=="string"){const err171={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/name",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err171];}else{vErrors.push(err171);}errors++;}}if(data25.label!==undefined){if(typeof data25.label!=="string"){const err172={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/label",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err172];}else{vErrors.push(err172);}errors++;}}if(data25.value!==undefined){if(typeof data25.value!=="string"){const err173={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/value",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err173];}else{vErrors.push(err173);}errors++;}}if(data25.isVisible!==undefined){if(typeof data25.isVisible!=="boolean"){const err174={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isVisible",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err174];}else{vErrors.push(err174);}errors++;}}if(data25.isFocused!==undefined){if(typeof data25.isFocused!=="boolean"){const err175={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isFocused",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err175];}else{vErrors.push(err175);}errors++;}}if(data25.errorMessage!==undefined){if(typeof data25.errorMessage!=="string"){const err176={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/errorMessage",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err176];}else{vErrors.push(err176);}errors++;}}if(data25.tooltip!==undefined){if(typeof data25.tooltip!=="string"){const err177={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/tooltip",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err177];}else{vErrors.push(err177);}errors++;}}if(data25.toolTipType!==undefined){if(typeof data25.toolTipType!=="string"){const err178={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/toolTipType",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err178];}else{vErrors.push(err178);}errors++;}}if(data25.required!==undefined){if(typeof data25.required!=="boolean"){const err179={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/required",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err179];}else{vErrors.push(err179);}errors++;}}if(data25.disabled!==undefined){if(typeof data25.disabled!=="boolean"){const err180={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/disabled",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err180];}else{vErrors.push(err180);}errors++;}}if(data25.labelActions!==undefined){let data147=data25.labelActions;if(Array.isArray(data147)){const len12=data147.length;for(let i12=0;i12<len12;i12++){let data148=data147[i12];if(!(data148&&typeof data148=="object"&&!Array.isArray(data148))){const err181={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions/"+i12,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err181];}else{vErrors.push(err181);}errors++;}}}else{const err182={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err182];}else{vErrors.push(err182);}errors++;}}if(data25.actions!==undefined){let data149=data25.actions;if(Array.isArray(data149)){const len13=data149.length;for(let i13=0;i13<len13;i13++){let data150=data149[i13];if(!(data150&&typeof data150=="object"&&!Array.isArray(data150))){const err183={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions/"+i13,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err183];}else{vErrors.push(err183);}errors++;}}}else{const err184={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err184];}else{vErrors.push(err184);}errors++;}}if(data25.textOverflowMode!==undefined){let data151=data25.textOverflowMode;if(typeof data151!=="string"){const err185={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err185];}else{vErrors.push(err185);}errors++;}if(!(data151==="clip"||data151==="wrap")){const err186={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[4].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err186];}else{vErrors.push(err186);}errors++;}}if(data25.isRead!==undefined){if(typeof data25.isRead!=="boolean"){const err187={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isRead",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err187];}else{vErrors.push(err187);}errors++;}}if(data25.readonly!==undefined){if(typeof data25.readonly!=="boolean"){const err188={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/readonly",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err188];}else{vErrors.push(err188);}errors++;}}if(data25.clientScripts!==undefined){if(!Array.isArray(data25.clientScripts)){const err189={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/clientScripts",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err189];}else{vErrors.push(err189);}errors++;}}}else{const err190={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/4/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err190];}else{vErrors.push(err190);}errors++;}var _valid0=_errs288===errors;valid11=valid11||_valid0;if(!valid11){const _errs342=errors;if(data25&&typeof data25=="object"&&!Array.isArray(data25)){if(data25.name===undefined){const err191={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err191];}else{vErrors.push(err191);}errors++;}if(data25.value===undefined){const err192={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err192];}else{vErrors.push(err192);}errors++;}if(data25.type!==undefined){let data155=data25.type;const _errs345=errors;let valid53=false;const _errs346=errors;if(data155&&typeof data155=="object"&&!Array.isArray(data155)){if(data155.UIComponentName!==undefined){if(typeof data155.UIComponentName!=="string"){const err193={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type/UIComponentName",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err193];}else{vErrors.push(err193);}errors++;}}}else{const err194={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err194];}else{vErrors.push(err194);}errors++;}var _valid6=_errs346===errors;valid53=valid53||_valid6;if(!valid53){const _errs350=errors;if(typeof data155!=="string"){const err195={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err195];}else{vErrors.push(err195);}errors++;}var _valid6=_errs350===errors;valid53=valid53||_valid6;}if(!valid53){const err196={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err196];}else{vErrors.push(err196);}errors++;}else{errors=_errs345;if(vErrors!==null){if(_errs345){vErrors.length=_errs345;}else{vErrors=null;}}}}if(data25.uiConfig!==undefined){let data157=data25.uiConfig;if(data157&&typeof data157=="object"&&!Array.isArray(data157)){if(data157.size!==undefined){let data158=data157.size;if(typeof data158!=="string"){const err197={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err197];}else{vErrors.push(err197);}errors++;}if(!(data158==="small"||data158==="large")){const err198={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[5].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err198];}else{vErrors.push(err198);}errors++;}}if(data157.breakRow!==undefined){if(typeof data157.breakRow!=="boolean"){const err199={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/breakRow",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err199];}else{vErrors.push(err199);}errors++;}}}else{const err200={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err200];}else{vErrors.push(err200);}errors++;}}if(data25.id!==undefined){if(typeof data25.id!=="string"){const err201={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/id",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err201];}else{vErrors.push(err201);}errors++;}}if(data25.name!==undefined){if(typeof data25.name!=="string"){const err202={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/name",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err202];}else{vErrors.push(err202);}errors++;}}if(data25.label!==undefined){if(typeof data25.label!=="string"){const err203={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/label",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err203];}else{vErrors.push(err203);}errors++;}}if(data25.value!==undefined){if(typeof data25.value!=="string"){const err204={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/value",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err204];}else{vErrors.push(err204);}errors++;}}if(data25.isVisible!==undefined){if(typeof data25.isVisible!=="boolean"){const err205={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isVisible",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err205];}else{vErrors.push(err205);}errors++;}}if(data25.isFocused!==undefined){if(typeof data25.isFocused!=="boolean"){const err206={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isFocused",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err206];}else{vErrors.push(err206);}errors++;}}if(data25.errorMessage!==undefined){if(typeof data25.errorMessage!=="string"){const err207={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/errorMessage",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err207];}else{vErrors.push(err207);}errors++;}}if(data25.tooltip!==undefined){if(typeof data25.tooltip!=="string"){const err208={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/tooltip",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err208];}else{vErrors.push(err208);}errors++;}}if(data25.toolTipType!==undefined){if(typeof data25.toolTipType!=="string"){const err209={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/toolTipType",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err209];}else{vErrors.push(err209);}errors++;}}if(data25.required!==undefined){if(typeof data25.required!=="boolean"){const err210={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/required",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err210];}else{vErrors.push(err210);}errors++;}}if(data25.disabled!==undefined){if(typeof data25.disabled!=="boolean"){const err211={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/disabled",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err211];}else{vErrors.push(err211);}errors++;}}if(data25.labelActions!==undefined){let data171=data25.labelActions;if(Array.isArray(data171)){const len14=data171.length;for(let i14=0;i14<len14;i14++){let data172=data171[i14];if(!(data172&&typeof data172=="object"&&!Array.isArray(data172))){const err212={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions/"+i14,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err212];}else{vErrors.push(err212);}errors++;}}}else{const err213={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err213];}else{vErrors.push(err213);}errors++;}}if(data25.actions!==undefined){let data173=data25.actions;if(Array.isArray(data173)){const len15=data173.length;for(let i15=0;i15<len15;i15++){let data174=data173[i15];if(!(data174&&typeof data174=="object"&&!Array.isArray(data174))){const err214={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions/"+i15,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err214];}else{vErrors.push(err214);}errors++;}}}else{const err215={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err215];}else{vErrors.push(err215);}errors++;}}if(data25.textOverflowMode!==undefined){let data175=data25.textOverflowMode;if(typeof data175!=="string"){const err216={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err216];}else{vErrors.push(err216);}errors++;}if(!(data175==="clip"||data175==="wrap")){const err217={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[5].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err217];}else{vErrors.push(err217);}errors++;}}if(data25.isRead!==undefined){if(typeof data25.isRead!=="boolean"){const err218={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isRead",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err218];}else{vErrors.push(err218);}errors++;}}if(data25.readonly!==undefined){if(typeof data25.readonly!=="boolean"){const err219={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/readonly",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err219];}else{vErrors.push(err219);}errors++;}}if(data25.clientScripts!==undefined){if(!Array.isArray(data25.clientScripts)){const err220={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/clientScripts",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err220];}else{vErrors.push(err220);}errors++;}}}else{const err221={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/5/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err221];}else{vErrors.push(err221);}errors++;}var _valid0=_errs342===errors;valid11=valid11||_valid0;if(!valid11){const _errs396=errors;if(data25&&typeof data25=="object"&&!Array.isArray(data25)){if(data25.name===undefined){const err222={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err222];}else{vErrors.push(err222);}errors++;}if(data25.value===undefined){const err223={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err223];}else{vErrors.push(err223);}errors++;}if(data25.type!==undefined){let data179=data25.type;const _errs399=errors;let valid61=false;const _errs400=errors;if(data179&&typeof data179=="object"&&!Array.isArray(data179)){if(data179.UIComponentName!==undefined){if(typeof data179.UIComponentName!=="string"){const err224={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type/UIComponentName",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err224];}else{vErrors.push(err224);}errors++;}}}else{const err225={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err225];}else{vErrors.push(err225);}errors++;}var _valid7=_errs400===errors;valid61=valid61||_valid7;if(!valid61){const _errs404=errors;if(typeof data179!=="string"){const err226={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err226];}else{vErrors.push(err226);}errors++;}var _valid7=_errs404===errors;valid61=valid61||_valid7;}if(!valid61){const err227={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err227];}else{vErrors.push(err227);}errors++;}else{errors=_errs399;if(vErrors!==null){if(_errs399){vErrors.length=_errs399;}else{vErrors=null;}}}}if(data25.uiConfig!==undefined){let data181=data25.uiConfig;if(data181&&typeof data181=="object"&&!Array.isArray(data181)){if(data181.size!==undefined){let data182=data181.size;if(typeof data182!=="string"){const err228={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err228];}else{vErrors.push(err228);}errors++;}if(!(data182==="small"||data182==="large")){const err229={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[6].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err229];}else{vErrors.push(err229);}errors++;}}if(data181.breakRow!==undefined){if(typeof data181.breakRow!=="boolean"){const err230={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/breakRow",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err230];}else{vErrors.push(err230);}errors++;}}}else{const err231={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err231];}else{vErrors.push(err231);}errors++;}}if(data25.id!==undefined){if(typeof data25.id!=="string"){const err232={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/id",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err232];}else{vErrors.push(err232);}errors++;}}if(data25.name!==undefined){if(typeof data25.name!=="string"){const err233={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/name",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err233];}else{vErrors.push(err233);}errors++;}}if(data25.label!==undefined){if(typeof data25.label!=="string"){const err234={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/label",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err234];}else{vErrors.push(err234);}errors++;}}if(data25.value!==undefined){if(typeof data25.value!=="string"){const err235={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/value",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err235];}else{vErrors.push(err235);}errors++;}}if(data25.isVisible!==undefined){if(typeof data25.isVisible!=="boolean"){const err236={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isVisible",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err236];}else{vErrors.push(err236);}errors++;}}if(data25.isFocused!==undefined){if(typeof data25.isFocused!=="boolean"){const err237={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isFocused",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err237];}else{vErrors.push(err237);}errors++;}}if(data25.errorMessage!==undefined){if(typeof data25.errorMessage!=="string"){const err238={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/errorMessage",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err238];}else{vErrors.push(err238);}errors++;}}if(data25.tooltip!==undefined){if(typeof data25.tooltip!=="string"){const err239={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/tooltip",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err239];}else{vErrors.push(err239);}errors++;}}if(data25.toolTipType!==undefined){if(typeof data25.toolTipType!=="string"){const err240={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/toolTipType",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err240];}else{vErrors.push(err240);}errors++;}}if(data25.required!==undefined){if(typeof data25.required!=="boolean"){const err241={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/required",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err241];}else{vErrors.push(err241);}errors++;}}if(data25.disabled!==undefined){if(typeof data25.disabled!=="boolean"){const err242={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/disabled",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err242];}else{vErrors.push(err242);}errors++;}}if(data25.labelActions!==undefined){let data195=data25.labelActions;if(Array.isArray(data195)){const len16=data195.length;for(let i16=0;i16<len16;i16++){let data196=data195[i16];if(!(data196&&typeof data196=="object"&&!Array.isArray(data196))){const err243={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions/"+i16,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err243];}else{vErrors.push(err243);}errors++;}}}else{const err244={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err244];}else{vErrors.push(err244);}errors++;}}if(data25.actions!==undefined){let data197=data25.actions;if(Array.isArray(data197)){const len17=data197.length;for(let i17=0;i17<len17;i17++){let data198=data197[i17];if(!(data198&&typeof data198=="object"&&!Array.isArray(data198))){const err245={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions/"+i17,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err245];}else{vErrors.push(err245);}errors++;}}}else{const err246={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err246];}else{vErrors.push(err246);}errors++;}}if(data25.textOverflowMode!==undefined){let data199=data25.textOverflowMode;if(typeof data199!=="string"){const err247={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err247];}else{vErrors.push(err247);}errors++;}if(!(data199==="clip"||data199==="wrap")){const err248={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[6].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err248];}else{vErrors.push(err248);}errors++;}}if(data25.isRead!==undefined){if(typeof data25.isRead!=="boolean"){const err249={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isRead",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err249];}else{vErrors.push(err249);}errors++;}}if(data25.readonly!==undefined){if(typeof data25.readonly!=="boolean"){const err250={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/readonly",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err250];}else{vErrors.push(err250);}errors++;}}if(data25.clientScripts!==undefined){if(!Array.isArray(data25.clientScripts)){const err251={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/clientScripts",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err251];}else{vErrors.push(err251);}errors++;}}if(data25.placeholder!==undefined){if(typeof data25.placeholder!=="string"){const err252={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/placeholder",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err252];}else{vErrors.push(err252);}errors++;}}if(data25.maxLength!==undefined){if(!(typeof data25.maxLength=="number")){const err253={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/maxLength",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err253];}else{vErrors.push(err253);}errors++;}}if(data25.ePHI!==undefined){if(typeof data25.ePHI!=="boolean"){const err254={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/ePHI",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/properties/ePHI/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err254];}else{vErrors.push(err254);}errors++;}}}else{const err255={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/6/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err255];}else{vErrors.push(err255);}errors++;}var _valid0=_errs396===errors;valid11=valid11||_valid0;if(!valid11){const _errs456=errors;if(data25&&typeof data25=="object"&&!Array.isArray(data25)){if(data25.name===undefined){const err256={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err256];}else{vErrors.push(err256);}errors++;}if(data25.value===undefined){const err257={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err257];}else{vErrors.push(err257);}errors++;}if(data25.type!==undefined){let data206=data25.type;const _errs459=errors;let valid69=false;const _errs460=errors;if(data206&&typeof data206=="object"&&!Array.isArray(data206)){if(data206.UIComponentName!==undefined){if(typeof data206.UIComponentName!=="string"){const err258={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type/UIComponentName",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err258];}else{vErrors.push(err258);}errors++;}}}else{const err259={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err259];}else{vErrors.push(err259);}errors++;}var _valid8=_errs460===errors;valid69=valid69||_valid8;if(!valid69){const _errs464=errors;if(typeof data206!=="string"){const err260={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err260];}else{vErrors.push(err260);}errors++;}var _valid8=_errs464===errors;valid69=valid69||_valid8;}if(!valid69){const err261={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err261];}else{vErrors.push(err261);}errors++;}else{errors=_errs459;if(vErrors!==null){if(_errs459){vErrors.length=_errs459;}else{vErrors=null;}}}}if(data25.uiConfig!==undefined){let data208=data25.uiConfig;if(data208&&typeof data208=="object"&&!Array.isArray(data208)){if(data208.size!==undefined){let data209=data208.size;if(typeof data209!=="string"){const err262={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err262];}else{vErrors.push(err262);}errors++;}if(!(data209==="small"||data209==="large")){const err263={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[7].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err263];}else{vErrors.push(err263);}errors++;}}if(data208.breakRow!==undefined){if(typeof data208.breakRow!=="boolean"){const err264={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/breakRow",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err264];}else{vErrors.push(err264);}errors++;}}}else{const err265={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err265];}else{vErrors.push(err265);}errors++;}}if(data25.id!==undefined){if(typeof data25.id!=="string"){const err266={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/id",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err266];}else{vErrors.push(err266);}errors++;}}if(data25.name!==undefined){if(typeof data25.name!=="string"){const err267={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/name",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err267];}else{vErrors.push(err267);}errors++;}}if(data25.label!==undefined){if(typeof data25.label!=="string"){const err268={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/label",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err268];}else{vErrors.push(err268);}errors++;}}if(data25.value!==undefined){if(typeof data25.value!=="string"){const err269={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/value",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err269];}else{vErrors.push(err269);}errors++;}}if(data25.isVisible!==undefined){if(typeof data25.isVisible!=="boolean"){const err270={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isVisible",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err270];}else{vErrors.push(err270);}errors++;}}if(data25.isFocused!==undefined){if(typeof data25.isFocused!=="boolean"){const err271={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isFocused",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err271];}else{vErrors.push(err271);}errors++;}}if(data25.errorMessage!==undefined){if(typeof data25.errorMessage!=="string"){const err272={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/errorMessage",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err272];}else{vErrors.push(err272);}errors++;}}if(data25.tooltip!==undefined){if(typeof data25.tooltip!=="string"){const err273={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/tooltip",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err273];}else{vErrors.push(err273);}errors++;}}if(data25.toolTipType!==undefined){if(typeof data25.toolTipType!=="string"){const err274={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/toolTipType",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err274];}else{vErrors.push(err274);}errors++;}}if(data25.required!==undefined){if(typeof data25.required!=="boolean"){const err275={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/required",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err275];}else{vErrors.push(err275);}errors++;}}if(data25.disabled!==undefined){if(typeof data25.disabled!=="boolean"){const err276={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/disabled",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err276];}else{vErrors.push(err276);}errors++;}}if(data25.labelActions!==undefined){let data222=data25.labelActions;if(Array.isArray(data222)){const len18=data222.length;for(let i18=0;i18<len18;i18++){let data223=data222[i18];if(!(data223&&typeof data223=="object"&&!Array.isArray(data223))){const err277={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions/"+i18,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err277];}else{vErrors.push(err277);}errors++;}}}else{const err278={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err278];}else{vErrors.push(err278);}errors++;}}if(data25.actions!==undefined){let data224=data25.actions;if(Array.isArray(data224)){const len19=data224.length;for(let i19=0;i19<len19;i19++){let data225=data224[i19];if(!(data225&&typeof data225=="object"&&!Array.isArray(data225))){const err279={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions/"+i19,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err279];}else{vErrors.push(err279);}errors++;}}}else{const err280={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err280];}else{vErrors.push(err280);}errors++;}}if(data25.textOverflowMode!==undefined){let data226=data25.textOverflowMode;if(typeof data226!=="string"){const err281={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err281];}else{vErrors.push(err281);}errors++;}if(!(data226==="clip"||data226==="wrap")){const err282={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[7].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err282];}else{vErrors.push(err282);}errors++;}}if(data25.isRead!==undefined){if(typeof data25.isRead!=="boolean"){const err283={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isRead",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err283];}else{vErrors.push(err283);}errors++;}}if(data25.readonly!==undefined){if(typeof data25.readonly!=="boolean"){const err284={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/readonly",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err284];}else{vErrors.push(err284);}errors++;}}if(data25.clientScripts!==undefined){if(!Array.isArray(data25.clientScripts)){const err285={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/clientScripts",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err285];}else{vErrors.push(err285);}errors++;}}if(data25.maxLength!==undefined){if(!(typeof data25.maxLength=="number")){const err286={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/maxLength",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err286];}else{vErrors.push(err286);}errors++;}}if(data25.placeholder!==undefined){if(typeof data25.placeholder!=="string"){const err287={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/placeholder",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err287];}else{vErrors.push(err287);}errors++;}}}else{const err288={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/7/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err288];}else{vErrors.push(err288);}errors++;}var _valid0=_errs456===errors;valid11=valid11||_valid0;if(!valid11){const _errs514=errors;if(data25&&typeof data25=="object"&&!Array.isArray(data25)){if(data25.name===undefined){const err289={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err289];}else{vErrors.push(err289);}errors++;}if(data25.type!==undefined){let data232=data25.type;const _errs517=errors;let valid77=false;const _errs518=errors;if(data232&&typeof data232=="object"&&!Array.isArray(data232)){if(data232.UIComponentName!==undefined){if(typeof data232.UIComponentName!=="string"){const err290={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type/UIComponentName",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err290];}else{vErrors.push(err290);}errors++;}}}else{const err291={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err291];}else{vErrors.push(err291);}errors++;}var _valid9=_errs518===errors;valid77=valid77||_valid9;if(!valid77){const _errs522=errors;if(typeof data232!=="string"){const err292={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err292];}else{vErrors.push(err292);}errors++;}var _valid9=_errs522===errors;valid77=valid77||_valid9;}if(!valid77){const err293={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err293];}else{vErrors.push(err293);}errors++;}else{errors=_errs517;if(vErrors!==null){if(_errs517){vErrors.length=_errs517;}else{vErrors=null;}}}}if(data25.uiConfig!==undefined){let data234=data25.uiConfig;if(data234&&typeof data234=="object"&&!Array.isArray(data234)){if(data234.size!==undefined){let data235=data234.size;if(typeof data235!=="string"){const err294={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err294];}else{vErrors.push(err294);}errors++;}if(!(data235==="small"||data235==="large")){const err295={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[8].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err295];}else{vErrors.push(err295);}errors++;}}if(data234.breakRow!==undefined){if(typeof data234.breakRow!=="boolean"){const err296={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/breakRow",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err296];}else{vErrors.push(err296);}errors++;}}}else{const err297={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err297];}else{vErrors.push(err297);}errors++;}}if(data25.id!==undefined){if(typeof data25.id!=="string"){const err298={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/id",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err298];}else{vErrors.push(err298);}errors++;}}if(data25.name!==undefined){if(typeof data25.name!=="string"){const err299={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/name",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err299];}else{vErrors.push(err299);}errors++;}}if(data25.label!==undefined){if(typeof data25.label!=="string"){const err300={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/label",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err300];}else{vErrors.push(err300);}errors++;}}if(data25.isVisible!==undefined){if(typeof data25.isVisible!=="boolean"){const err301={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isVisible",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err301];}else{vErrors.push(err301);}errors++;}}if(data25.isFocused!==undefined){if(typeof data25.isFocused!=="boolean"){const err302={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isFocused",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err302];}else{vErrors.push(err302);}errors++;}}if(data25.errorMessage!==undefined){if(typeof data25.errorMessage!=="string"){const err303={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/errorMessage",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err303];}else{vErrors.push(err303);}errors++;}}if(data25.tooltip!==undefined){if(typeof data25.tooltip!=="string"){const err304={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/tooltip",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err304];}else{vErrors.push(err304);}errors++;}}if(data25.toolTipType!==undefined){if(typeof data25.toolTipType!=="string"){const err305={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/toolTipType",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err305];}else{vErrors.push(err305);}errors++;}}if(data25.required!==undefined){if(typeof data25.required!=="boolean"){const err306={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/required",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err306];}else{vErrors.push(err306);}errors++;}}if(data25.disabled!==undefined){if(typeof data25.disabled!=="boolean"){const err307={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/disabled",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err307];}else{vErrors.push(err307);}errors++;}}if(data25.labelActions!==undefined){let data247=data25.labelActions;if(Array.isArray(data247)){const len20=data247.length;for(let i20=0;i20<len20;i20++){let data248=data247[i20];if(!(data248&&typeof data248=="object"&&!Array.isArray(data248))){const err308={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions/"+i20,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err308];}else{vErrors.push(err308);}errors++;}}}else{const err309={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err309];}else{vErrors.push(err309);}errors++;}}if(data25.actions!==undefined){let data249=data25.actions;if(Array.isArray(data249)){const len21=data249.length;for(let i21=0;i21<len21;i21++){let data250=data249[i21];if(!(data250&&typeof data250=="object"&&!Array.isArray(data250))){const err310={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions/"+i21,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err310];}else{vErrors.push(err310);}errors++;}}}else{const err311={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err311];}else{vErrors.push(err311);}errors++;}}if(data25.textOverflowMode!==undefined){let data251=data25.textOverflowMode;if(typeof data251!=="string"){const err312={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err312];}else{vErrors.push(err312);}errors++;}if(!(data251==="clip"||data251==="wrap")){const err313={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[8].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err313];}else{vErrors.push(err313);}errors++;}}if(data25.isRead!==undefined){if(typeof data25.isRead!=="boolean"){const err314={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isRead",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err314];}else{vErrors.push(err314);}errors++;}}if(data25.readonly!==undefined){if(typeof data25.readonly!=="boolean"){const err315={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/readonly",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err315];}else{vErrors.push(err315);}errors++;}}if(data25.clientScripts!==undefined){if(!Array.isArray(data25.clientScripts)){const err316={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/clientScripts",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err316];}else{vErrors.push(err316);}errors++;}}if(data25.lookup!==undefined){let data255=data25.lookup;if(!(data255&&typeof data255=="object"&&!Array.isArray(data255))){const err317={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/lookup",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/lookup/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err317];}else{vErrors.push(err317);}errors++;}}if(data25.maxLength!==undefined){if(!(typeof data25.maxLength=="number")){const err318={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/maxLength",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err318];}else{vErrors.push(err318);}errors++;}}}else{const err319={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/8/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err319];}else{vErrors.push(err319);}errors++;}var _valid0=_errs514===errors;valid11=valid11||_valid0;if(!valid11){const _errs570=errors;if(data25&&typeof data25=="object"&&!Array.isArray(data25)){if(data25.name===undefined){const err320={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err320];}else{vErrors.push(err320);}errors++;}if(data25.value===undefined){const err321={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err321];}else{vErrors.push(err321);}errors++;}if(data25.type!==undefined){let data257=data25.type;const _errs573=errors;let valid85=false;const _errs574=errors;if(data257&&typeof data257=="object"&&!Array.isArray(data257)){if(data257.UIComponentName!==undefined){if(typeof data257.UIComponentName!=="string"){const err322={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type/UIComponentName",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err322];}else{vErrors.push(err322);}errors++;}}}else{const err323={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err323];}else{vErrors.push(err323);}errors++;}var _valid10=_errs574===errors;valid85=valid85||_valid10;if(!valid85){const _errs578=errors;if(typeof data257!=="string"){const err324={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err324];}else{vErrors.push(err324);}errors++;}var _valid10=_errs578===errors;valid85=valid85||_valid10;}if(!valid85){const err325={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err325];}else{vErrors.push(err325);}errors++;}else{errors=_errs573;if(vErrors!==null){if(_errs573){vErrors.length=_errs573;}else{vErrors=null;}}}}if(data25.uiConfig!==undefined){let data259=data25.uiConfig;if(data259&&typeof data259=="object"&&!Array.isArray(data259)){if(data259.size!==undefined){let data260=data259.size;if(typeof data260!=="string"){const err326={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err326];}else{vErrors.push(err326);}errors++;}if(!(data260==="small"||data260==="large")){const err327={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[9].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err327];}else{vErrors.push(err327);}errors++;}}if(data259.breakRow!==undefined){if(typeof data259.breakRow!=="boolean"){const err328={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/breakRow",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err328];}else{vErrors.push(err328);}errors++;}}}else{const err329={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err329];}else{vErrors.push(err329);}errors++;}}if(data25.id!==undefined){if(typeof data25.id!=="string"){const err330={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/id",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err330];}else{vErrors.push(err330);}errors++;}}if(data25.name!==undefined){if(typeof data25.name!=="string"){const err331={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/name",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err331];}else{vErrors.push(err331);}errors++;}}if(data25.label!==undefined){if(typeof data25.label!=="string"){const err332={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/label",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err332];}else{vErrors.push(err332);}errors++;}}if(data25.value!==undefined){if(!Array.isArray(data25.value)){const err333={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/value",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/value/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err333];}else{vErrors.push(err333);}errors++;}}if(data25.isVisible!==undefined){if(typeof data25.isVisible!=="boolean"){const err334={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isVisible",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err334];}else{vErrors.push(err334);}errors++;}}if(data25.isFocused!==undefined){if(typeof data25.isFocused!=="boolean"){const err335={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isFocused",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err335];}else{vErrors.push(err335);}errors++;}}if(data25.errorMessage!==undefined){if(typeof data25.errorMessage!=="string"){const err336={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/errorMessage",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err336];}else{vErrors.push(err336);}errors++;}}if(data25.tooltip!==undefined){if(typeof data25.tooltip!=="string"){const err337={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/tooltip",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err337];}else{vErrors.push(err337);}errors++;}}if(data25.toolTipType!==undefined){if(typeof data25.toolTipType!=="string"){const err338={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/toolTipType",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err338];}else{vErrors.push(err338);}errors++;}}if(data25.required!==undefined){if(typeof data25.required!=="boolean"){const err339={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/required",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err339];}else{vErrors.push(err339);}errors++;}}if(data25.disabled!==undefined){if(typeof data25.disabled!=="boolean"){const err340={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/disabled",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err340];}else{vErrors.push(err340);}errors++;}}if(data25.labelActions!==undefined){let data273=data25.labelActions;if(Array.isArray(data273)){const len22=data273.length;for(let i22=0;i22<len22;i22++){let data274=data273[i22];if(!(data274&&typeof data274=="object"&&!Array.isArray(data274))){const err341={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions/"+i22,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err341];}else{vErrors.push(err341);}errors++;}}}else{const err342={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err342];}else{vErrors.push(err342);}errors++;}}if(data25.actions!==undefined){let data275=data25.actions;if(Array.isArray(data275)){const len23=data275.length;for(let i23=0;i23<len23;i23++){let data276=data275[i23];if(!(data276&&typeof data276=="object"&&!Array.isArray(data276))){const err343={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions/"+i23,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err343];}else{vErrors.push(err343);}errors++;}}}else{const err344={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err344];}else{vErrors.push(err344);}errors++;}}if(data25.textOverflowMode!==undefined){let data277=data25.textOverflowMode;if(typeof data277!=="string"){const err345={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err345];}else{vErrors.push(err345);}errors++;}if(!(data277==="clip"||data277==="wrap")){const err346={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[9].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err346];}else{vErrors.push(err346);}errors++;}}if(data25.isRead!==undefined){if(typeof data25.isRead!=="boolean"){const err347={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isRead",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err347];}else{vErrors.push(err347);}errors++;}}if(data25.readonly!==undefined){if(typeof data25.readonly!=="boolean"){const err348={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/readonly",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err348];}else{vErrors.push(err348);}errors++;}}if(data25.clientScripts!==undefined){if(!Array.isArray(data25.clientScripts)){const err349={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/clientScripts",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err349];}else{vErrors.push(err349);}errors++;}}if(data25.subType!==undefined){let data281=data25.subType;if(typeof data281!=="string"){const err350={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/subType",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/subType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err350];}else{vErrors.push(err350);}errors++;}if(!(data281==="plain"||data281==="colored"||data281==="Plain"||data281==="ColorCoded")){const err351={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/subType",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/subType/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[9].properties.subType.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err351];}else{vErrors.push(err351);}errors++;}}if(data25.placeholder!==undefined){if(typeof data25.placeholder!=="string"){const err352={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/placeholder",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err352];}else{vErrors.push(err352);}errors++;}}if(data25.options!==undefined){let data283=data25.options;if(Array.isArray(data283)){const len24=data283.length;for(let i24=0;i24<len24;i24++){let data284=data283[i24];if(data284&&typeof data284=="object"&&!Array.isArray(data284)){if(data284.value===undefined){const err353={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/options/"+i24,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/options/items/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err353];}else{vErrors.push(err353);}errors++;}if(data284.value!==undefined){if(typeof data284.value!=="string"){const err354={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/options/"+i24+"/value",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/options/items/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err354];}else{vErrors.push(err354);}errors++;}}if(data284.optionActions!==undefined){let data286=data284.optionActions;if(Array.isArray(data286)){const len25=data286.length;for(let i25=0;i25<len25;i25++){let data287=data286[i25];if(!(data287&&typeof data287=="object"&&!Array.isArray(data287))){const err355={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/options/"+i24+"/optionActions/"+i25,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/options/items/properties/optionActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err355];}else{vErrors.push(err355);}errors++;}}}else{const err356={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/options/"+i24+"/optionActions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/options/items/properties/optionActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err356];}else{vErrors.push(err356);}errors++;}}}else{const err357={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/options/"+i24,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/options/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err357];}else{vErrors.push(err357);}errors++;}}}else{const err358={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/options",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/properties/options/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err358];}else{vErrors.push(err358);}errors++;}}}else{const err359={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/9/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err359];}else{vErrors.push(err359);}errors++;}var _valid0=_errs570===errors;valid11=valid11||_valid0;if(!valid11){const _errs638=errors;if(data25&&typeof data25=="object"&&!Array.isArray(data25)){if(data25.name===undefined){const err360={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err360];}else{vErrors.push(err360);}errors++;}if(data25.value===undefined){const err361={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err361];}else{vErrors.push(err361);}errors++;}if(data25.type!==undefined){let data288=data25.type;const _errs641=errors;let valid98=false;const _errs642=errors;if(data288&&typeof data288=="object"&&!Array.isArray(data288)){if(data288.UIComponentName!==undefined){if(typeof data288.UIComponentName!=="string"){const err362={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type/UIComponentName",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err362];}else{vErrors.push(err362);}errors++;}}}else{const err363={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err363];}else{vErrors.push(err363);}errors++;}var _valid11=_errs642===errors;valid98=valid98||_valid11;if(!valid98){const _errs646=errors;if(typeof data288!=="string"){const err364={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err364];}else{vErrors.push(err364);}errors++;}var _valid11=_errs646===errors;valid98=valid98||_valid11;}if(!valid98){const err365={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err365];}else{vErrors.push(err365);}errors++;}else{errors=_errs641;if(vErrors!==null){if(_errs641){vErrors.length=_errs641;}else{vErrors=null;}}}}if(data25.uiConfig!==undefined){let data290=data25.uiConfig;if(data290&&typeof data290=="object"&&!Array.isArray(data290)){if(data290.size!==undefined){let data291=data290.size;if(typeof data291!=="string"){const err366={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err366];}else{vErrors.push(err366);}errors++;}if(!(data291==="small"||data291==="large")){const err367={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[10].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err367];}else{vErrors.push(err367);}errors++;}}if(data290.breakRow!==undefined){if(typeof data290.breakRow!=="boolean"){const err368={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/breakRow",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err368];}else{vErrors.push(err368);}errors++;}}}else{const err369={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err369];}else{vErrors.push(err369);}errors++;}}if(data25.id!==undefined){if(typeof data25.id!=="string"){const err370={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/id",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err370];}else{vErrors.push(err370);}errors++;}}if(data25.name!==undefined){if(typeof data25.name!=="string"){const err371={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/name",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err371];}else{vErrors.push(err371);}errors++;}}if(data25.label!==undefined){if(typeof data25.label!=="string"){const err372={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/label",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err372];}else{vErrors.push(err372);}errors++;}}if(data25.value!==undefined){let data296=data25.value;if(typeof data296!=="string"&&!(typeof data296=="number")){const err373={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/value",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/value/type",keyword:"type",params:{type:schema43.properties.sections.items.properties.fields.items.anyOf[10].properties.value.type},message:"must be string,number"};if(vErrors===null){vErrors=[err373];}else{vErrors.push(err373);}errors++;}}if(data25.isVisible!==undefined){if(typeof data25.isVisible!=="boolean"){const err374={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isVisible",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err374];}else{vErrors.push(err374);}errors++;}}if(data25.isFocused!==undefined){if(typeof data25.isFocused!=="boolean"){const err375={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isFocused",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err375];}else{vErrors.push(err375);}errors++;}}if(data25.errorMessage!==undefined){if(typeof data25.errorMessage!=="string"){const err376={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/errorMessage",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err376];}else{vErrors.push(err376);}errors++;}}if(data25.tooltip!==undefined){if(typeof data25.tooltip!=="string"){const err377={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/tooltip",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err377];}else{vErrors.push(err377);}errors++;}}if(data25.toolTipType!==undefined){if(typeof data25.toolTipType!=="string"){const err378={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/toolTipType",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err378];}else{vErrors.push(err378);}errors++;}}if(data25.required!==undefined){if(typeof data25.required!=="boolean"){const err379={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/required",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err379];}else{vErrors.push(err379);}errors++;}}if(data25.disabled!==undefined){if(typeof data25.disabled!=="boolean"){const err380={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/disabled",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err380];}else{vErrors.push(err380);}errors++;}}if(data25.labelActions!==undefined){let data304=data25.labelActions;if(Array.isArray(data304)){const len26=data304.length;for(let i26=0;i26<len26;i26++){let data305=data304[i26];if(!(data305&&typeof data305=="object"&&!Array.isArray(data305))){const err381={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions/"+i26,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err381];}else{vErrors.push(err381);}errors++;}}}else{const err382={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err382];}else{vErrors.push(err382);}errors++;}}if(data25.actions!==undefined){let data306=data25.actions;if(Array.isArray(data306)){const len27=data306.length;for(let i27=0;i27<len27;i27++){let data307=data306[i27];if(!(data307&&typeof data307=="object"&&!Array.isArray(data307))){const err383={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions/"+i27,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err383];}else{vErrors.push(err383);}errors++;}}}else{const err384={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err384];}else{vErrors.push(err384);}errors++;}}if(data25.textOverflowMode!==undefined){let data308=data25.textOverflowMode;if(typeof data308!=="string"){const err385={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err385];}else{vErrors.push(err385);}errors++;}if(!(data308==="clip"||data308==="wrap")){const err386={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[10].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err386];}else{vErrors.push(err386);}errors++;}}if(data25.isRead!==undefined){if(typeof data25.isRead!=="boolean"){const err387={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isRead",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err387];}else{vErrors.push(err387);}errors++;}}if(data25.readonly!==undefined){if(typeof data25.readonly!=="boolean"){const err388={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/readonly",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err388];}else{vErrors.push(err388);}errors++;}}if(data25.clientScripts!==undefined){if(!Array.isArray(data25.clientScripts)){const err389={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/clientScripts",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err389];}else{vErrors.push(err389);}errors++;}}if(data25.placeholder!==undefined){if(typeof data25.placeholder!=="string"){const err390={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/placeholder",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err390];}else{vErrors.push(err390);}errors++;}}if(data25.maxLength!==undefined){if(!(typeof data25.maxLength=="number")){const err391={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/maxLength",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err391];}else{vErrors.push(err391);}errors++;}}if(data25.ePHI!==undefined){if(typeof data25.ePHI!=="boolean"){const err392={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/ePHI",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/properties/ePHI/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err392];}else{vErrors.push(err392);}errors++;}}}else{const err393={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/10/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err393];}else{vErrors.push(err393);}errors++;}var _valid0=_errs638===errors;valid11=valid11||_valid0;if(!valid11){const _errs698=errors;if(data25&&typeof data25=="object"&&!Array.isArray(data25)){if(data25.name===undefined){const err394={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err394];}else{vErrors.push(err394);}errors++;}if(data25.value===undefined){const err395={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err395];}else{vErrors.push(err395);}errors++;}if(data25.type!==undefined){let data315=data25.type;const _errs701=errors;let valid106=false;const _errs702=errors;if(data315&&typeof data315=="object"&&!Array.isArray(data315)){if(data315.UIComponentName!==undefined){if(typeof data315.UIComponentName!=="string"){const err396={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type/UIComponentName",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err396];}else{vErrors.push(err396);}errors++;}}}else{const err397={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err397];}else{vErrors.push(err397);}errors++;}var _valid12=_errs702===errors;valid106=valid106||_valid12;if(!valid106){const _errs706=errors;if(typeof data315!=="string"){const err398={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err398];}else{vErrors.push(err398);}errors++;}var _valid12=_errs706===errors;valid106=valid106||_valid12;}if(!valid106){const err399={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err399];}else{vErrors.push(err399);}errors++;}else{errors=_errs701;if(vErrors!==null){if(_errs701){vErrors.length=_errs701;}else{vErrors=null;}}}}if(data25.uiConfig!==undefined){let data317=data25.uiConfig;if(data317&&typeof data317=="object"&&!Array.isArray(data317)){if(data317.size!==undefined){let data318=data317.size;if(typeof data318!=="string"){const err400={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err400];}else{vErrors.push(err400);}errors++;}if(!(data318==="small"||data318==="large")){const err401={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[11].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err401];}else{vErrors.push(err401);}errors++;}}if(data317.breakRow!==undefined){if(typeof data317.breakRow!=="boolean"){const err402={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/breakRow",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err402];}else{vErrors.push(err402);}errors++;}}}else{const err403={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err403];}else{vErrors.push(err403);}errors++;}}if(data25.id!==undefined){if(typeof data25.id!=="string"){const err404={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/id",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err404];}else{vErrors.push(err404);}errors++;}}if(data25.name!==undefined){if(typeof data25.name!=="string"){const err405={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/name",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err405];}else{vErrors.push(err405);}errors++;}}if(data25.label!==undefined){if(typeof data25.label!=="string"){const err406={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/label",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err406];}else{vErrors.push(err406);}errors++;}}if(data25.value!==undefined){if(typeof data25.value!=="string"){const err407={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/value",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err407];}else{vErrors.push(err407);}errors++;}}if(data25.isVisible!==undefined){if(typeof data25.isVisible!=="boolean"){const err408={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isVisible",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err408];}else{vErrors.push(err408);}errors++;}}if(data25.isFocused!==undefined){if(typeof data25.isFocused!=="boolean"){const err409={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isFocused",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err409];}else{vErrors.push(err409);}errors++;}}if(data25.errorMessage!==undefined){if(typeof data25.errorMessage!=="string"){const err410={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/errorMessage",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err410];}else{vErrors.push(err410);}errors++;}}if(data25.tooltip!==undefined){if(typeof data25.tooltip!=="string"){const err411={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/tooltip",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err411];}else{vErrors.push(err411);}errors++;}}if(data25.toolTipType!==undefined){if(typeof data25.toolTipType!=="string"){const err412={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/toolTipType",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err412];}else{vErrors.push(err412);}errors++;}}if(data25.required!==undefined){if(typeof data25.required!=="boolean"){const err413={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/required",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err413];}else{vErrors.push(err413);}errors++;}}if(data25.disabled!==undefined){if(typeof data25.disabled!=="boolean"){const err414={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/disabled",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err414];}else{vErrors.push(err414);}errors++;}}if(data25.labelActions!==undefined){let data331=data25.labelActions;if(Array.isArray(data331)){const len28=data331.length;for(let i28=0;i28<len28;i28++){let data332=data331[i28];if(!(data332&&typeof data332=="object"&&!Array.isArray(data332))){const err415={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions/"+i28,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err415];}else{vErrors.push(err415);}errors++;}}}else{const err416={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err416];}else{vErrors.push(err416);}errors++;}}if(data25.actions!==undefined){let data333=data25.actions;if(Array.isArray(data333)){const len29=data333.length;for(let i29=0;i29<len29;i29++){let data334=data333[i29];if(!(data334&&typeof data334=="object"&&!Array.isArray(data334))){const err417={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions/"+i29,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err417];}else{vErrors.push(err417);}errors++;}}}else{const err418={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err418];}else{vErrors.push(err418);}errors++;}}if(data25.textOverflowMode!==undefined){let data335=data25.textOverflowMode;if(typeof data335!=="string"){const err419={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err419];}else{vErrors.push(err419);}errors++;}if(!(data335==="clip"||data335==="wrap")){const err420={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[11].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err420];}else{vErrors.push(err420);}errors++;}}if(data25.isRead!==undefined){if(typeof data25.isRead!=="boolean"){const err421={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isRead",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err421];}else{vErrors.push(err421);}errors++;}}if(data25.readonly!==undefined){if(typeof data25.readonly!=="boolean"){const err422={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/readonly",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err422];}else{vErrors.push(err422);}errors++;}}if(data25.clientScripts!==undefined){if(!Array.isArray(data25.clientScripts)){const err423={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/clientScripts",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err423];}else{vErrors.push(err423);}errors++;}}if(data25.placeholder!==undefined){if(typeof data25.placeholder!=="string"){const err424={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/placeholder",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err424];}else{vErrors.push(err424);}errors++;}}if(data25.ePHI!==undefined){if(typeof data25.ePHI!=="boolean"){const err425={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/ePHI",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/properties/ePHI/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err425];}else{vErrors.push(err425);}errors++;}}}else{const err426={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/11/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err426];}else{vErrors.push(err426);}errors++;}var _valid0=_errs698===errors;valid11=valid11||_valid0;if(!valid11){const _errs756=errors;if(data25&&typeof data25=="object"&&!Array.isArray(data25)){if(data25.name===undefined){const err427={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err427];}else{vErrors.push(err427);}errors++;}if(data25.value===undefined){const err428={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err428];}else{vErrors.push(err428);}errors++;}if(data25.type!==undefined){let data341=data25.type;const _errs759=errors;let valid114=false;const _errs760=errors;if(data341&&typeof data341=="object"&&!Array.isArray(data341)){if(data341.UIComponentName!==undefined){if(typeof data341.UIComponentName!=="string"){const err429={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type/UIComponentName",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err429];}else{vErrors.push(err429);}errors++;}}}else{const err430={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err430];}else{vErrors.push(err430);}errors++;}var _valid13=_errs760===errors;valid114=valid114||_valid13;if(!valid114){const _errs764=errors;if(typeof data341!=="string"){const err431={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err431];}else{vErrors.push(err431);}errors++;}var _valid13=_errs764===errors;valid114=valid114||_valid13;}if(!valid114){const err432={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err432];}else{vErrors.push(err432);}errors++;}else{errors=_errs759;if(vErrors!==null){if(_errs759){vErrors.length=_errs759;}else{vErrors=null;}}}}if(data25.uiConfig!==undefined){let data343=data25.uiConfig;if(data343&&typeof data343=="object"&&!Array.isArray(data343)){if(data343.size!==undefined){let data344=data343.size;if(typeof data344!=="string"){const err433={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err433];}else{vErrors.push(err433);}errors++;}if(!(data344==="small"||data344==="large")){const err434={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[12].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err434];}else{vErrors.push(err434);}errors++;}}if(data343.breakRow!==undefined){if(typeof data343.breakRow!=="boolean"){const err435={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/breakRow",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err435];}else{vErrors.push(err435);}errors++;}}}else{const err436={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err436];}else{vErrors.push(err436);}errors++;}}if(data25.id!==undefined){if(typeof data25.id!=="string"){const err437={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/id",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err437];}else{vErrors.push(err437);}errors++;}}if(data25.name!==undefined){if(typeof data25.name!=="string"){const err438={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/name",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err438];}else{vErrors.push(err438);}errors++;}}if(data25.label!==undefined){if(typeof data25.label!=="string"){const err439={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/label",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err439];}else{vErrors.push(err439);}errors++;}}if(data25.value!==undefined){if(typeof data25.value!=="string"){const err440={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/value",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err440];}else{vErrors.push(err440);}errors++;}}if(data25.isVisible!==undefined){if(typeof data25.isVisible!=="boolean"){const err441={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isVisible",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err441];}else{vErrors.push(err441);}errors++;}}if(data25.isFocused!==undefined){if(typeof data25.isFocused!=="boolean"){const err442={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isFocused",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err442];}else{vErrors.push(err442);}errors++;}}if(data25.errorMessage!==undefined){if(typeof data25.errorMessage!=="string"){const err443={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/errorMessage",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err443];}else{vErrors.push(err443);}errors++;}}if(data25.tooltip!==undefined){if(typeof data25.tooltip!=="string"){const err444={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/tooltip",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err444];}else{vErrors.push(err444);}errors++;}}if(data25.toolTipType!==undefined){if(typeof data25.toolTipType!=="string"){const err445={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/toolTipType",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err445];}else{vErrors.push(err445);}errors++;}}if(data25.required!==undefined){if(typeof data25.required!=="boolean"){const err446={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/required",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err446];}else{vErrors.push(err446);}errors++;}}if(data25.disabled!==undefined){if(typeof data25.disabled!=="boolean"){const err447={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/disabled",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err447];}else{vErrors.push(err447);}errors++;}}if(data25.labelActions!==undefined){let data357=data25.labelActions;if(Array.isArray(data357)){const len30=data357.length;for(let i30=0;i30<len30;i30++){let data358=data357[i30];if(!(data358&&typeof data358=="object"&&!Array.isArray(data358))){const err448={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions/"+i30,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err448];}else{vErrors.push(err448);}errors++;}}}else{const err449={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err449];}else{vErrors.push(err449);}errors++;}}if(data25.actions!==undefined){let data359=data25.actions;if(Array.isArray(data359)){const len31=data359.length;for(let i31=0;i31<len31;i31++){let data360=data359[i31];if(!(data360&&typeof data360=="object"&&!Array.isArray(data360))){const err450={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions/"+i31,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err450];}else{vErrors.push(err450);}errors++;}}}else{const err451={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err451];}else{vErrors.push(err451);}errors++;}}if(data25.textOverflowMode!==undefined){let data361=data25.textOverflowMode;if(typeof data361!=="string"){const err452={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err452];}else{vErrors.push(err452);}errors++;}if(!(data361==="clip"||data361==="wrap")){const err453={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[12].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err453];}else{vErrors.push(err453);}errors++;}}if(data25.isRead!==undefined){if(typeof data25.isRead!=="boolean"){const err454={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isRead",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err454];}else{vErrors.push(err454);}errors++;}}if(data25.readonly!==undefined){if(typeof data25.readonly!=="boolean"){const err455={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/readonly",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err455];}else{vErrors.push(err455);}errors++;}}if(data25.clientScripts!==undefined){if(!Array.isArray(data25.clientScripts)){const err456={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/clientScripts",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err456];}else{vErrors.push(err456);}errors++;}}if(data25.placeholder!==undefined){if(typeof data25.placeholder!=="string"){const err457={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/placeholder",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err457];}else{vErrors.push(err457);}errors++;}}if(data25.maxLength!==undefined){if(!(typeof data25.maxLength=="number")){const err458={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/maxLength",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err458];}else{vErrors.push(err458);}errors++;}}if(data25.ePHI!==undefined){if(typeof data25.ePHI!=="boolean"){const err459={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/ePHI",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/properties/ePHI/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err459];}else{vErrors.push(err459);}errors++;}}}else{const err460={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/12/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err460];}else{vErrors.push(err460);}errors++;}var _valid0=_errs756===errors;valid11=valid11||_valid0;if(!valid11){const _errs816=errors;if(data25&&typeof data25=="object"&&!Array.isArray(data25)){if(data25.name===undefined){const err461={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err461];}else{vErrors.push(err461);}errors++;}if(data25.value===undefined){const err462={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err462];}else{vErrors.push(err462);}errors++;}if(data25.type!==undefined){let data368=data25.type;const _errs819=errors;let valid122=false;const _errs820=errors;if(data368&&typeof data368=="object"&&!Array.isArray(data368)){if(data368.UIComponentName!==undefined){if(typeof data368.UIComponentName!=="string"){const err463={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type/UIComponentName",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err463];}else{vErrors.push(err463);}errors++;}}}else{const err464={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err464];}else{vErrors.push(err464);}errors++;}var _valid14=_errs820===errors;valid122=valid122||_valid14;if(!valid122){const _errs824=errors;if(typeof data368!=="string"){const err465={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err465];}else{vErrors.push(err465);}errors++;}var _valid14=_errs824===errors;valid122=valid122||_valid14;}if(!valid122){const err466={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err466];}else{vErrors.push(err466);}errors++;}else{errors=_errs819;if(vErrors!==null){if(_errs819){vErrors.length=_errs819;}else{vErrors=null;}}}}if(data25.uiConfig!==undefined){let data370=data25.uiConfig;if(data370&&typeof data370=="object"&&!Array.isArray(data370)){if(data370.size!==undefined){let data371=data370.size;if(typeof data371!=="string"){const err467={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err467];}else{vErrors.push(err467);}errors++;}if(!(data371==="small"||data371==="large")){const err468={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[13].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err468];}else{vErrors.push(err468);}errors++;}}if(data370.breakRow!==undefined){if(typeof data370.breakRow!=="boolean"){const err469={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/breakRow",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err469];}else{vErrors.push(err469);}errors++;}}}else{const err470={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err470];}else{vErrors.push(err470);}errors++;}}if(data25.id!==undefined){if(typeof data25.id!=="string"){const err471={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/id",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err471];}else{vErrors.push(err471);}errors++;}}if(data25.name!==undefined){if(typeof data25.name!=="string"){const err472={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/name",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err472];}else{vErrors.push(err472);}errors++;}}if(data25.label!==undefined){if(typeof data25.label!=="string"){const err473={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/label",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err473];}else{vErrors.push(err473);}errors++;}}if(data25.value!==undefined){if(typeof data25.value!=="string"){const err474={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/value",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err474];}else{vErrors.push(err474);}errors++;}}if(data25.isVisible!==undefined){if(typeof data25.isVisible!=="boolean"){const err475={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isVisible",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err475];}else{vErrors.push(err475);}errors++;}}if(data25.isFocused!==undefined){if(typeof data25.isFocused!=="boolean"){const err476={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isFocused",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err476];}else{vErrors.push(err476);}errors++;}}if(data25.errorMessage!==undefined){if(typeof data25.errorMessage!=="string"){const err477={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/errorMessage",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err477];}else{vErrors.push(err477);}errors++;}}if(data25.tooltip!==undefined){if(typeof data25.tooltip!=="string"){const err478={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/tooltip",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err478];}else{vErrors.push(err478);}errors++;}}if(data25.toolTipType!==undefined){if(typeof data25.toolTipType!=="string"){const err479={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/toolTipType",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err479];}else{vErrors.push(err479);}errors++;}}if(data25.required!==undefined){if(typeof data25.required!=="boolean"){const err480={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/required",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err480];}else{vErrors.push(err480);}errors++;}}if(data25.disabled!==undefined){if(typeof data25.disabled!=="boolean"){const err481={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/disabled",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err481];}else{vErrors.push(err481);}errors++;}}if(data25.labelActions!==undefined){let data384=data25.labelActions;if(Array.isArray(data384)){const len32=data384.length;for(let i32=0;i32<len32;i32++){let data385=data384[i32];if(!(data385&&typeof data385=="object"&&!Array.isArray(data385))){const err482={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions/"+i32,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err482];}else{vErrors.push(err482);}errors++;}}}else{const err483={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err483];}else{vErrors.push(err483);}errors++;}}if(data25.actions!==undefined){let data386=data25.actions;if(Array.isArray(data386)){const len33=data386.length;for(let i33=0;i33<len33;i33++){let data387=data386[i33];if(!(data387&&typeof data387=="object"&&!Array.isArray(data387))){const err484={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions/"+i33,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err484];}else{vErrors.push(err484);}errors++;}}}else{const err485={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err485];}else{vErrors.push(err485);}errors++;}}if(data25.textOverflowMode!==undefined){let data388=data25.textOverflowMode;if(typeof data388!=="string"){const err486={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err486];}else{vErrors.push(err486);}errors++;}if(!(data388==="clip"||data388==="wrap")){const err487={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[13].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err487];}else{vErrors.push(err487);}errors++;}}if(data25.isRead!==undefined){if(typeof data25.isRead!=="boolean"){const err488={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isRead",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err488];}else{vErrors.push(err488);}errors++;}}if(data25.readonly!==undefined){if(typeof data25.readonly!=="boolean"){const err489={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/readonly",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err489];}else{vErrors.push(err489);}errors++;}}if(data25.clientScripts!==undefined){if(!Array.isArray(data25.clientScripts)){const err490={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/clientScripts",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err490];}else{vErrors.push(err490);}errors++;}}if(data25.subType!==undefined){let data392=data25.subType;if(typeof data392!=="string"){const err491={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/subType",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/subType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err491];}else{vErrors.push(err491);}errors++;}if(!(data392==="plain"||data392==="colored"||data392==="colorcoded")){const err492={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/subType",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/subType/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[13].properties.subType.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err492];}else{vErrors.push(err492);}errors++;}}if(data25.placeholder!==undefined){if(typeof data25.placeholder!=="string"){const err493={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/placeholder",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err493];}else{vErrors.push(err493);}errors++;}}if(data25.options!==undefined){let data394=data25.options;if(Array.isArray(data394)){const len34=data394.length;for(let i34=0;i34<len34;i34++){let data395=data394[i34];if(data395&&typeof data395=="object"&&!Array.isArray(data395)){if(data395.value===undefined){const err494={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/options/"+i34,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/options/items/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err494];}else{vErrors.push(err494);}errors++;}if(data395.value!==undefined){if(typeof data395.value!=="string"){const err495={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/options/"+i34+"/value",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/options/items/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err495];}else{vErrors.push(err495);}errors++;}}if(data395.optionActions!==undefined){let data397=data395.optionActions;if(Array.isArray(data397)){const len35=data397.length;for(let i35=0;i35<len35;i35++){let data398=data397[i35];if(!(data398&&typeof data398=="object"&&!Array.isArray(data398))){const err496={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/options/"+i34+"/optionActions/"+i35,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/options/items/properties/optionActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err496];}else{vErrors.push(err496);}errors++;}}}else{const err497={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/options/"+i34+"/optionActions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/options/items/properties/optionActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err497];}else{vErrors.push(err497);}errors++;}}}else{const err498={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/options/"+i34,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/options/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err498];}else{vErrors.push(err498);}errors++;}}}else{const err499={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/options",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/properties/options/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err499];}else{vErrors.push(err499);}errors++;}}}else{const err500={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/13/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err500];}else{vErrors.push(err500);}errors++;}var _valid0=_errs816===errors;valid11=valid11||_valid0;if(!valid11){const _errs884=errors;if(data25&&typeof data25=="object"&&!Array.isArray(data25)){if(data25.name===undefined){const err501={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err501];}else{vErrors.push(err501);}errors++;}if(data25.value===undefined){const err502={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err502];}else{vErrors.push(err502);}errors++;}if(data25.type!==undefined){let data399=data25.type;const _errs887=errors;let valid135=false;const _errs888=errors;if(data399&&typeof data399=="object"&&!Array.isArray(data399)){if(data399.UIComponentName!==undefined){if(typeof data399.UIComponentName!=="string"){const err503={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type/UIComponentName",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err503];}else{vErrors.push(err503);}errors++;}}}else{const err504={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err504];}else{vErrors.push(err504);}errors++;}var _valid15=_errs888===errors;valid135=valid135||_valid15;if(!valid135){const _errs892=errors;if(typeof data399!=="string"){const err505={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err505];}else{vErrors.push(err505);}errors++;}var _valid15=_errs892===errors;valid135=valid135||_valid15;}if(!valid135){const err506={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err506];}else{vErrors.push(err506);}errors++;}else{errors=_errs887;if(vErrors!==null){if(_errs887){vErrors.length=_errs887;}else{vErrors=null;}}}}if(data25.uiConfig!==undefined){let data401=data25.uiConfig;if(data401&&typeof data401=="object"&&!Array.isArray(data401)){if(data401.size!==undefined){let data402=data401.size;if(typeof data402!=="string"){const err507={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err507];}else{vErrors.push(err507);}errors++;}if(!(data402==="small"||data402==="large")){const err508={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/size",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[14].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err508];}else{vErrors.push(err508);}errors++;}}if(data401.breakRow!==undefined){if(typeof data401.breakRow!=="boolean"){const err509={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig/breakRow",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err509];}else{vErrors.push(err509);}errors++;}}}else{const err510={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/uiConfig",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err510];}else{vErrors.push(err510);}errors++;}}if(data25.id!==undefined){if(typeof data25.id!=="string"){const err511={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/id",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err511];}else{vErrors.push(err511);}errors++;}}if(data25.name!==undefined){if(typeof data25.name!=="string"){const err512={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/name",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err512];}else{vErrors.push(err512);}errors++;}}if(data25.label!==undefined){if(typeof data25.label!=="string"){const err513={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/label",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err513];}else{vErrors.push(err513);}errors++;}}if(data25.value!==undefined){if(typeof data25.value!=="string"){const err514={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/value",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err514];}else{vErrors.push(err514);}errors++;}}if(data25.isVisible!==undefined){if(typeof data25.isVisible!=="boolean"){const err515={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isVisible",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err515];}else{vErrors.push(err515);}errors++;}}if(data25.isFocused!==undefined){if(typeof data25.isFocused!=="boolean"){const err516={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isFocused",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err516];}else{vErrors.push(err516);}errors++;}}if(data25.errorMessage!==undefined){if(typeof data25.errorMessage!=="string"){const err517={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/errorMessage",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err517];}else{vErrors.push(err517);}errors++;}}if(data25.tooltip!==undefined){if(typeof data25.tooltip!=="string"){const err518={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/tooltip",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err518];}else{vErrors.push(err518);}errors++;}}if(data25.toolTipType!==undefined){if(typeof data25.toolTipType!=="string"){const err519={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/toolTipType",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err519];}else{vErrors.push(err519);}errors++;}}if(data25.required!==undefined){if(typeof data25.required!=="boolean"){const err520={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/required",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err520];}else{vErrors.push(err520);}errors++;}}if(data25.disabled!==undefined){if(typeof data25.disabled!=="boolean"){const err521={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/disabled",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err521];}else{vErrors.push(err521);}errors++;}}if(data25.labelActions!==undefined){let data415=data25.labelActions;if(Array.isArray(data415)){const len36=data415.length;for(let i36=0;i36<len36;i36++){let data416=data415[i36];if(!(data416&&typeof data416=="object"&&!Array.isArray(data416))){const err522={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions/"+i36,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err522];}else{vErrors.push(err522);}errors++;}}}else{const err523={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/labelActions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err523];}else{vErrors.push(err523);}errors++;}}if(data25.actions!==undefined){let data417=data25.actions;if(Array.isArray(data417)){const len37=data417.length;for(let i37=0;i37<len37;i37++){let data418=data417[i37];if(!(data418&&typeof data418=="object"&&!Array.isArray(data418))){const err524={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions/"+i37,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err524];}else{vErrors.push(err524);}errors++;}}}else{const err525={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/actions",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err525];}else{vErrors.push(err525);}errors++;}}if(data25.textOverflowMode!==undefined){let data419=data25.textOverflowMode;if(typeof data419!=="string"){const err526={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err526];}else{vErrors.push(err526);}errors++;}if(!(data419==="clip"||data419==="wrap")){const err527={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/textOverflowMode",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema43.properties.sections.items.properties.fields.items.anyOf[14].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err527];}else{vErrors.push(err527);}errors++;}}if(data25.isRead!==undefined){if(typeof data25.isRead!=="boolean"){const err528={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/isRead",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err528];}else{vErrors.push(err528);}errors++;}}if(data25.readonly!==undefined){if(typeof data25.readonly!=="boolean"){const err529={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/readonly",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err529];}else{vErrors.push(err529);}errors++;}}if(data25.clientScripts!==undefined){if(!Array.isArray(data25.clientScripts)){const err530={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/clientScripts",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err530];}else{vErrors.push(err530);}errors++;}}if(data25.maxLength!==undefined){if(!(typeof data25.maxLength=="number")){const err531={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/maxLength",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err531];}else{vErrors.push(err531);}errors++;}}if(data25.placeholder!==undefined){if(typeof data25.placeholder!=="string"){const err532={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/placeholder",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err532];}else{vErrors.push(err532);}errors++;}}if(data25.ePHI!==undefined){if(typeof data25.ePHI!=="boolean"){const err533={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/ePHI",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/properties/ePHI/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err533];}else{vErrors.push(err533);}errors++;}}}else{const err534={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/14/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err534];}else{vErrors.push(err534);}errors++;}var _valid0=_errs884===errors;valid11=valid11||_valid0;if(!valid11){const _errs944=errors;if(data25&&typeof data25=="object"&&!Array.isArray(data25)){if(data25.type===undefined){const err535={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/15/required",keyword:"required",params:{missingProperty:"type"},message:"must have required property '"+"type"+"'"};if(vErrors===null){vErrors=[err535];}else{vErrors.push(err535);}errors++;}if(data25.value===undefined){const err536={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/15/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err536];}else{vErrors.push(err536);}errors++;}if(data25.type!==undefined){if(typeof data25.type!=="string"){const err537={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/type",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/15/properties/type/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err537];}else{vErrors.push(err537);}errors++;}}if(data25.value!==undefined){if(typeof data25.value!=="string"){const err538={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3+"/value",schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/15/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err538];}else{vErrors.push(err538);}errors++;}}}else{const err539={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf/15/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err539];}else{vErrors.push(err539);}errors++;}var _valid0=_errs944===errors;valid11=valid11||_valid0;}}}}}}}}}}}}}}}if(!valid11){const err540={instancePath:instancePath+"/sections/"+i0+"/fields/"+i3,schemaPath:"#/properties/sections/items/properties/fields/items/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err540];}else{vErrors.push(err540);}errors++;}else{errors=_errs53;if(vErrors!==null){if(_errs53){vErrors.length=_errs53;}else{vErrors=null;}}}}}else{const err541={instancePath:instancePath+"/sections/"+i0+"/fields",schemaPath:"#/properties/sections/items/properties/fields/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err541];}else{vErrors.push(err541);}errors++;}}}else{const err542={instancePath:instancePath+"/sections/"+i0,schemaPath:"#/properties/sections/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err542];}else{vErrors.push(err542);}errors++;}}}else{const err543={instancePath:instancePath+"/sections",schemaPath:"#/properties/sections/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err543];}else{vErrors.push(err543);}errors++;}}if(data.isLoading!==undefined){if(typeof data.isLoading!=="boolean"){const err544={instancePath:instancePath+"/isLoading",schemaPath:"#/properties/isLoading/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err544];}else{vErrors.push(err544);}errors++;}}}else{const err545={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err545];}else{vErrors.push(err545);}errors++;}validate42.errors=vErrors;return errors===0;}exports["cc_form-connected"]=validate43;const schema44={"type":"object","properties":{"isHeaderEnabled":{"type":"boolean"},"isFooterEnabled":{"type":"boolean"},"submitConfig":{"type":"object","properties":{"text":{"type":"string"},"isEnabled":{"type":"boolean"}},"required":["isEnabled"]},"cancelConfig":{"type":"object","properties":{"text":{"type":"string"},"isEnabled":{"type":"boolean"}},"required":["isEnabled"]},"preferences":{"type":"object","properties":{"fields":{"type":"object","additionalProperties":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}}}}},"componentMapping":{"type":"object","properties":{"rightPanel":{"type":"object","properties":{"UIComponentName":{"type":"string"}}},"sections":{"type":"object","additionalProperties":{"type":"object","properties":{"UIComponentName":{"type":"string"}},"required":["UIComponentName"]}},"fields":{"type":"object","additionalProperties":{"type":"object","properties":{"UIComponentName":{"type":"string"}},"required":["UIComponentName"]}},"loadingState":{"type":"string"}}}},"required":[],"$id":"cc_form-connected"};function validate43(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_form-connected" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.isHeaderEnabled!==undefined){if(typeof data.isHeaderEnabled!=="boolean"){const err0={instancePath:instancePath+"/isHeaderEnabled",schemaPath:"#/properties/isHeaderEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data.isFooterEnabled!==undefined){if(typeof data.isFooterEnabled!=="boolean"){const err1={instancePath:instancePath+"/isFooterEnabled",schemaPath:"#/properties/isFooterEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.submitConfig!==undefined){let data2=data.submitConfig;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.isEnabled===undefined){const err2={instancePath:instancePath+"/submitConfig",schemaPath:"#/properties/submitConfig/required",keyword:"required",params:{missingProperty:"isEnabled"},message:"must have required property '"+"isEnabled"+"'"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}if(data2.text!==undefined){if(typeof data2.text!=="string"){const err3={instancePath:instancePath+"/submitConfig/text",schemaPath:"#/properties/submitConfig/properties/text/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data2.isEnabled!==undefined){if(typeof data2.isEnabled!=="boolean"){const err4={instancePath:instancePath+"/submitConfig/isEnabled",schemaPath:"#/properties/submitConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}}else{const err5={instancePath:instancePath+"/submitConfig",schemaPath:"#/properties/submitConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data.cancelConfig!==undefined){let data5=data.cancelConfig;if(data5&&typeof data5=="object"&&!Array.isArray(data5)){if(data5.isEnabled===undefined){const err6={instancePath:instancePath+"/cancelConfig",schemaPath:"#/properties/cancelConfig/required",keyword:"required",params:{missingProperty:"isEnabled"},message:"must have required property '"+"isEnabled"+"'"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(data5.text!==undefined){if(typeof data5.text!=="string"){const err7={instancePath:instancePath+"/cancelConfig/text",schemaPath:"#/properties/cancelConfig/properties/text/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data5.isEnabled!==undefined){if(typeof data5.isEnabled!=="boolean"){const err8={instancePath:instancePath+"/cancelConfig/isEnabled",schemaPath:"#/properties/cancelConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/cancelConfig",schemaPath:"#/properties/cancelConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.preferences!==undefined){let data8=data.preferences;if(data8&&typeof data8=="object"&&!Array.isArray(data8)){if(data8.fields!==undefined){let data9=data8.fields;if(data9&&typeof data9=="object"&&!Array.isArray(data9)){for(const key0 in data9){let data10=data9[key0];if(data10&&typeof data10=="object"&&!Array.isArray(data10)){if(data10.size!==undefined){let data11=data10.size;if(typeof data11!=="string"){const err10={instancePath:instancePath+"/preferences/fields/"+key0.replace(/~/g,"~0").replace(/\//g,"~1")+"/size",schemaPath:"#/properties/preferences/properties/fields/additionalProperties/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}if(!(data11==="small"||data11==="large")){const err11={instancePath:instancePath+"/preferences/fields/"+key0.replace(/~/g,"~0").replace(/\//g,"~1")+"/size",schemaPath:"#/properties/preferences/properties/fields/additionalProperties/properties/size/enum",keyword:"enum",params:{allowedValues:schema44.properties.preferences.properties.fields.additionalProperties.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data10.breakRow!==undefined){if(typeof data10.breakRow!=="boolean"){const err12={instancePath:instancePath+"/preferences/fields/"+key0.replace(/~/g,"~0").replace(/\//g,"~1")+"/breakRow",schemaPath:"#/properties/preferences/properties/fields/additionalProperties/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}}else{const err13={instancePath:instancePath+"/preferences/fields/"+key0.replace(/~/g,"~0").replace(/\//g,"~1"),schemaPath:"#/properties/preferences/properties/fields/additionalProperties/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}}else{const err14={instancePath:instancePath+"/preferences/fields",schemaPath:"#/properties/preferences/properties/fields/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}}else{const err15={instancePath:instancePath+"/preferences",schemaPath:"#/properties/preferences/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.componentMapping!==undefined){let data13=data.componentMapping;if(data13&&typeof data13=="object"&&!Array.isArray(data13)){if(data13.rightPanel!==undefined){let data14=data13.rightPanel;if(data14&&typeof data14=="object"&&!Array.isArray(data14)){if(data14.UIComponentName!==undefined){if(typeof data14.UIComponentName!=="string"){const err16={instancePath:instancePath+"/componentMapping/rightPanel/UIComponentName",schemaPath:"#/properties/componentMapping/properties/rightPanel/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}}else{const err17={instancePath:instancePath+"/componentMapping/rightPanel",schemaPath:"#/properties/componentMapping/properties/rightPanel/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data13.sections!==undefined){let data16=data13.sections;if(data16&&typeof data16=="object"&&!Array.isArray(data16)){for(const key1 in data16){let data17=data16[key1];if(data17&&typeof data17=="object"&&!Array.isArray(data17)){if(data17.UIComponentName===undefined){const err18={instancePath:instancePath+"/componentMapping/sections/"+key1.replace(/~/g,"~0").replace(/\//g,"~1"),schemaPath:"#/properties/componentMapping/properties/sections/additionalProperties/required",keyword:"required",params:{missingProperty:"UIComponentName"},message:"must have required property '"+"UIComponentName"+"'"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}if(data17.UIComponentName!==undefined){if(typeof data17.UIComponentName!=="string"){const err19={instancePath:instancePath+"/componentMapping/sections/"+key1.replace(/~/g,"~0").replace(/\//g,"~1")+"/UIComponentName",schemaPath:"#/properties/componentMapping/properties/sections/additionalProperties/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}}else{const err20={instancePath:instancePath+"/componentMapping/sections/"+key1.replace(/~/g,"~0").replace(/\//g,"~1"),schemaPath:"#/properties/componentMapping/properties/sections/additionalProperties/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}}else{const err21={instancePath:instancePath+"/componentMapping/sections",schemaPath:"#/properties/componentMapping/properties/sections/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}if(data13.fields!==undefined){let data19=data13.fields;if(data19&&typeof data19=="object"&&!Array.isArray(data19)){for(const key2 in data19){let data20=data19[key2];if(data20&&typeof data20=="object"&&!Array.isArray(data20)){if(data20.UIComponentName===undefined){const err22={instancePath:instancePath+"/componentMapping/fields/"+key2.replace(/~/g,"~0").replace(/\//g,"~1"),schemaPath:"#/properties/componentMapping/properties/fields/additionalProperties/required",keyword:"required",params:{missingProperty:"UIComponentName"},message:"must have required property '"+"UIComponentName"+"'"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}if(data20.UIComponentName!==undefined){if(typeof data20.UIComponentName!=="string"){const err23={instancePath:instancePath+"/componentMapping/fields/"+key2.replace(/~/g,"~0").replace(/\//g,"~1")+"/UIComponentName",schemaPath:"#/properties/componentMapping/properties/fields/additionalProperties/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}}else{const err24={instancePath:instancePath+"/componentMapping/fields/"+key2.replace(/~/g,"~0").replace(/\//g,"~1"),schemaPath:"#/properties/componentMapping/properties/fields/additionalProperties/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}}else{const err25={instancePath:instancePath+"/componentMapping/fields",schemaPath:"#/properties/componentMapping/properties/fields/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}}if(data13.loadingState!==undefined){if(typeof data13.loadingState!=="string"){const err26={instancePath:instancePath+"/componentMapping/loadingState",schemaPath:"#/properties/componentMapping/properties/loadingState/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}}else{const err27={instancePath:instancePath+"/componentMapping",schemaPath:"#/properties/componentMapping/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}}else{const err28={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}validate43.errors=vErrors;return errors===0;}exports["cc_highlighted-value"]=validate44;const schema45={"type":"object","properties":{"text":{"type":"string"},"color":{"type":"string","enum":["grey","red","orange","green","blue"]},"weight":{"type":"string","enum":["light","regular","semibold","bold"]},"isDotted":{"type":"boolean"},"tooltip":{"type":"string"},"cursor":{"type":"string","enum":["default","pointer"]}},"required":["text","color"],"$id":"cc_highlighted-value"};function validate44(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_highlighted-value" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.text===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"text"},message:"must have required property '"+"text"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.color===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"color"},message:"must have required property '"+"color"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.text!==undefined){if(typeof data.text!=="string"){const err2={instancePath:instancePath+"/text",schemaPath:"#/properties/text/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.color!==undefined){let data1=data.color;if(typeof data1!=="string"){const err3={instancePath:instancePath+"/color",schemaPath:"#/properties/color/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}if(!(data1==="grey"||data1==="red"||data1==="orange"||data1==="green"||data1==="blue")){const err4={instancePath:instancePath+"/color",schemaPath:"#/properties/color/enum",keyword:"enum",params:{allowedValues:schema45.properties.color.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.weight!==undefined){let data2=data.weight;if(typeof data2!=="string"){const err5={instancePath:instancePath+"/weight",schemaPath:"#/properties/weight/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}if(!(data2==="light"||data2==="regular"||data2==="semibold"||data2==="bold")){const err6={instancePath:instancePath+"/weight",schemaPath:"#/properties/weight/enum",keyword:"enum",params:{allowedValues:schema45.properties.weight.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.isDotted!==undefined){if(typeof data.isDotted!=="boolean"){const err7={instancePath:instancePath+"/isDotted",schemaPath:"#/properties/isDotted/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err8={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data.cursor!==undefined){let data5=data.cursor;if(typeof data5!=="string"){const err9={instancePath:instancePath+"/cursor",schemaPath:"#/properties/cursor/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}if(!(data5==="default"||data5==="pointer")){const err10={instancePath:instancePath+"/cursor",schemaPath:"#/properties/cursor/enum",keyword:"enum",params:{allowedValues:schema45.properties.cursor.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}}else{const err11={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}validate44.errors=vErrors;return errors===0;}exports["cc_icon-button"]=validate45;const schema46={"type":"object","properties":{"palette":{"type":"string","enum":["primary","primaryFilled","default"]},"iconSize":{"type":"string"},"size":{"type":"string","enum":["xsmall","small","medium","large","xlarge"]},"iconName":{"type":"string"},"isActive":{"type":"boolean"},"isDisabled":{"type":"boolean"},"hoverType":{"type":"string","enum":["default","border","bg"]},"title":{"type":"string"},"isBold":{"type":"boolean"}},"required":[],"$id":"cc_icon-button"};function validate45(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_icon-button" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.palette!==undefined){let data0=data.palette;if(typeof data0!=="string"){const err0={instancePath:instancePath+"/palette",schemaPath:"#/properties/palette/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(!(data0==="primary"||data0==="primaryFilled"||data0==="default")){const err1={instancePath:instancePath+"/palette",schemaPath:"#/properties/palette/enum",keyword:"enum",params:{allowedValues:schema46.properties.palette.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.iconSize!==undefined){if(typeof data.iconSize!=="string"){const err2={instancePath:instancePath+"/iconSize",schemaPath:"#/properties/iconSize/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.size!==undefined){let data2=data.size;if(typeof data2!=="string"){const err3={instancePath:instancePath+"/size",schemaPath:"#/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}if(!(data2==="xsmall"||data2==="small"||data2==="medium"||data2==="large"||data2==="xlarge")){const err4={instancePath:instancePath+"/size",schemaPath:"#/properties/size/enum",keyword:"enum",params:{allowedValues:schema46.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.iconName!==undefined){if(typeof data.iconName!=="string"){const err5={instancePath:instancePath+"/iconName",schemaPath:"#/properties/iconName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data.isActive!==undefined){if(typeof data.isActive!=="boolean"){const err6={instancePath:instancePath+"/isActive",schemaPath:"#/properties/isActive/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.isDisabled!==undefined){if(typeof data.isDisabled!=="boolean"){const err7={instancePath:instancePath+"/isDisabled",schemaPath:"#/properties/isDisabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data.hoverType!==undefined){let data6=data.hoverType;if(typeof data6!=="string"){const err8={instancePath:instancePath+"/hoverType",schemaPath:"#/properties/hoverType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}if(!(data6==="default"||data6==="border"||data6==="bg")){const err9={instancePath:instancePath+"/hoverType",schemaPath:"#/properties/hoverType/enum",keyword:"enum",params:{allowedValues:schema46.properties.hoverType.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.title!==undefined){if(typeof data.title!=="string"){const err10={instancePath:instancePath+"/title",schemaPath:"#/properties/title/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.isBold!==undefined){if(typeof data.isBold!=="boolean"){const err11={instancePath:instancePath+"/isBold",schemaPath:"#/properties/isBold/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}}else{const err12={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}validate45.errors=vErrors;return errors===0;}exports.cc_label=validate46;const schema47={"type":"object","properties":{"label":{"type":"string"},"for":{"type":"string"},"actions":{"type":"array"},"isMandatory":{"type":"boolean"},"clientScripts":{"type":"array"}},"required":[],"$id":"cc_label"};function validate46(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_label" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.label!==undefined){if(typeof data.label!=="string"){const err0={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data.for!==undefined){if(typeof data.for!=="string"){const err1={instancePath:instancePath+"/for",schemaPath:"#/properties/for/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.actions!==undefined){if(!Array.isArray(data.actions)){const err2={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.isMandatory!==undefined){if(typeof data.isMandatory!=="boolean"){const err3={instancePath:instancePath+"/isMandatory",schemaPath:"#/properties/isMandatory/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err4={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}}else{const err5={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}validate46.errors=vErrors;return errors===0;}exports.cc_link=validate47;const schema48={"type":"object","properties":{"text":{"type":"string"},"variant":{"type":"string","enum":["primary","secondary"]},"isDotted":{"type":"boolean"},"weight":{"type":"string","enum":["light","regular","semibold","bold"]},"href":{"type":"string"},"tooltip":{"type":"string"},"opensNewTab":{"type":"boolean"}},"required":["href"],"$id":"cc_link"};function validate47(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_link" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.href===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"href"},message:"must have required property '"+"href"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.text!==undefined){if(typeof data.text!=="string"){const err1={instancePath:instancePath+"/text",schemaPath:"#/properties/text/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.variant!==undefined){let data1=data.variant;if(typeof data1!=="string"){const err2={instancePath:instancePath+"/variant",schemaPath:"#/properties/variant/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}if(!(data1==="primary"||data1==="secondary")){const err3={instancePath:instancePath+"/variant",schemaPath:"#/properties/variant/enum",keyword:"enum",params:{allowedValues:schema48.properties.variant.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.isDotted!==undefined){if(typeof data.isDotted!=="boolean"){const err4={instancePath:instancePath+"/isDotted",schemaPath:"#/properties/isDotted/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.weight!==undefined){let data3=data.weight;if(typeof data3!=="string"){const err5={instancePath:instancePath+"/weight",schemaPath:"#/properties/weight/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}if(!(data3==="light"||data3==="regular"||data3==="semibold"||data3==="bold")){const err6={instancePath:instancePath+"/weight",schemaPath:"#/properties/weight/enum",keyword:"enum",params:{allowedValues:schema48.properties.weight.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.href!==undefined){if(typeof data.href!=="string"){const err7={instancePath:instancePath+"/href",schemaPath:"#/properties/href/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err8={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data.opensNewTab!==undefined){if(typeof data.opensNewTab!=="boolean"){const err9={instancePath:instancePath+"/opensNewTab",schemaPath:"#/properties/opensNewTab/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}}else{const err10={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}validate47.errors=vErrors;return errors===0;}exports["cc_list-item"]=validate48;const schema49={"type":"object","properties":{"id":{"type":"string"},"isDisabled":{"type":"boolean"},"isActive":{"type":"boolean"},"text":{"type":"string"},"secondaryText":{"type":"string"},"size":{"type":"string","enum":["small","medium","large"]},"tooltip":{"type":"string"},"icon":{"type":"string"},"iconSize":{"type":"number"},"imgSrc":{"type":"string"},"imgName":{"type":"string"},"href":{"type":"string"},"target":{"type":"string","enum":["self","blank","parent","top"]},"palette":{"type":"string","enum":["default","danger"]},"divider":{"type":"string","enum":["none","before","after"]}},"required":[],"$id":"cc_list-item"};function validate48(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_list-item" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.id!==undefined){if(typeof data.id!=="string"){const err0={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data.isDisabled!==undefined){if(typeof data.isDisabled!=="boolean"){const err1={instancePath:instancePath+"/isDisabled",schemaPath:"#/properties/isDisabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.isActive!==undefined){if(typeof data.isActive!=="boolean"){const err2={instancePath:instancePath+"/isActive",schemaPath:"#/properties/isActive/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.text!==undefined){if(typeof data.text!=="string"){const err3={instancePath:instancePath+"/text",schemaPath:"#/properties/text/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.secondaryText!==undefined){if(typeof data.secondaryText!=="string"){const err4={instancePath:instancePath+"/secondaryText",schemaPath:"#/properties/secondaryText/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.size!==undefined){let data5=data.size;if(typeof data5!=="string"){const err5={instancePath:instancePath+"/size",schemaPath:"#/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}if(!(data5==="small"||data5==="medium"||data5==="large")){const err6={instancePath:instancePath+"/size",schemaPath:"#/properties/size/enum",keyword:"enum",params:{allowedValues:schema49.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err7={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data.icon!==undefined){if(typeof data.icon!=="string"){const err8={instancePath:instancePath+"/icon",schemaPath:"#/properties/icon/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data.iconSize!==undefined){if(!(typeof data.iconSize=="number")){const err9={instancePath:instancePath+"/iconSize",schemaPath:"#/properties/iconSize/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.imgSrc!==undefined){if(typeof data.imgSrc!=="string"){const err10={instancePath:instancePath+"/imgSrc",schemaPath:"#/properties/imgSrc/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.imgName!==undefined){if(typeof data.imgName!=="string"){const err11={instancePath:instancePath+"/imgName",schemaPath:"#/properties/imgName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.href!==undefined){if(typeof data.href!=="string"){const err12={instancePath:instancePath+"/href",schemaPath:"#/properties/href/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.target!==undefined){let data12=data.target;if(typeof data12!=="string"){const err13={instancePath:instancePath+"/target",schemaPath:"#/properties/target/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}if(!(data12==="self"||data12==="blank"||data12==="parent"||data12==="top")){const err14={instancePath:instancePath+"/target",schemaPath:"#/properties/target/enum",keyword:"enum",params:{allowedValues:schema49.properties.target.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.palette!==undefined){let data13=data.palette;if(typeof data13!=="string"){const err15={instancePath:instancePath+"/palette",schemaPath:"#/properties/palette/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}if(!(data13==="default"||data13==="danger")){const err16={instancePath:instancePath+"/palette",schemaPath:"#/properties/palette/enum",keyword:"enum",params:{allowedValues:schema49.properties.palette.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.divider!==undefined){let data14=data.divider;if(typeof data14!=="string"){const err17={instancePath:instancePath+"/divider",schemaPath:"#/properties/divider/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}if(!(data14==="none"||data14==="before"||data14==="after")){const err18={instancePath:instancePath+"/divider",schemaPath:"#/properties/divider/enum",keyword:"enum",params:{allowedValues:schema49.properties.divider.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}}else{const err19={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}validate48.errors=vErrors;return errors===0;}exports["cc_more-dropdown"]=validate49;const schema50={"type":"object","properties":{"heading":{"type":"string"},"options":{"type":"array","items":{"anyOf":[{"type":"object","properties":{"id":{"type":"string"},"value":{"type":"string"},"palette":{"type":"string","enum":["default","danger"]},"iconName":{"type":"string"},"iconSize":{"type":"string"}},"required":["id","value"]},{"type":"object","properties":{"needDivider":{"type":"boolean"}},"required":["needDivider"]}]}},"isDisabled":{"type":"boolean"},"tooltip":{"type":"string"}},"required":["options"],"$id":"cc_more-dropdown"};function validate49(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_more-dropdown" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.options===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"options"},message:"must have required property '"+"options"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.heading!==undefined){if(typeof data.heading!=="string"){const err1={instancePath:instancePath+"/heading",schemaPath:"#/properties/heading/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.options!==undefined){let data1=data.options;if(Array.isArray(data1)){const len0=data1.length;for(let i0=0;i0<len0;i0++){let data2=data1[i0];const _errs6=errors;let valid3=false;const _errs7=errors;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.id===undefined){const err2={instancePath:instancePath+"/options/"+i0,schemaPath:"#/properties/options/items/anyOf/0/required",keyword:"required",params:{missingProperty:"id"},message:"must have required property '"+"id"+"'"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}if(data2.value===undefined){const err3={instancePath:instancePath+"/options/"+i0,schemaPath:"#/properties/options/items/anyOf/0/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}if(data2.id!==undefined){if(typeof data2.id!=="string"){const err4={instancePath:instancePath+"/options/"+i0+"/id",schemaPath:"#/properties/options/items/anyOf/0/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data2.value!==undefined){if(typeof data2.value!=="string"){const err5={instancePath:instancePath+"/options/"+i0+"/value",schemaPath:"#/properties/options/items/anyOf/0/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data2.palette!==undefined){let data5=data2.palette;if(typeof data5!=="string"){const err6={instancePath:instancePath+"/options/"+i0+"/palette",schemaPath:"#/properties/options/items/anyOf/0/properties/palette/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data5==="default"||data5==="danger")){const err7={instancePath:instancePath+"/options/"+i0+"/palette",schemaPath:"#/properties/options/items/anyOf/0/properties/palette/enum",keyword:"enum",params:{allowedValues:schema50.properties.options.items.anyOf[0].properties.palette.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data2.iconName!==undefined){if(typeof data2.iconName!=="string"){const err8={instancePath:instancePath+"/options/"+i0+"/iconName",schemaPath:"#/properties/options/items/anyOf/0/properties/iconName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data2.iconSize!==undefined){if(typeof data2.iconSize!=="string"){const err9={instancePath:instancePath+"/options/"+i0+"/iconSize",schemaPath:"#/properties/options/items/anyOf/0/properties/iconSize/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}}else{const err10={instancePath:instancePath+"/options/"+i0,schemaPath:"#/properties/options/items/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}var _valid0=_errs7===errors;valid3=valid3||_valid0;if(!valid3){const _errs19=errors;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.needDivider===undefined){const err11={instancePath:instancePath+"/options/"+i0,schemaPath:"#/properties/options/items/anyOf/1/required",keyword:"required",params:{missingProperty:"needDivider"},message:"must have required property '"+"needDivider"+"'"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}if(data2.needDivider!==undefined){if(typeof data2.needDivider!=="boolean"){const err12={instancePath:instancePath+"/options/"+i0+"/needDivider",schemaPath:"#/properties/options/items/anyOf/1/properties/needDivider/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}}else{const err13={instancePath:instancePath+"/options/"+i0,schemaPath:"#/properties/options/items/anyOf/1/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}var _valid0=_errs19===errors;valid3=valid3||_valid0;}if(!valid3){const err14={instancePath:instancePath+"/options/"+i0,schemaPath:"#/properties/options/items/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}else{errors=_errs6;if(vErrors!==null){if(_errs6){vErrors.length=_errs6;}else{vErrors=null;}}}}}else{const err15={instancePath:instancePath+"/options",schemaPath:"#/properties/options/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.isDisabled!==undefined){if(typeof data.isDisabled!=="boolean"){const err16={instancePath:instancePath+"/isDisabled",schemaPath:"#/properties/isDisabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err17={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}}else{const err18={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}validate49.errors=vErrors;return errors===0;}exports["cc_multi-select"]=validate50;const schema51={"type":"object","properties":{"id":{"type":"string"},"options":{"type":"array","items":{"type":"object","properties":{"value":{"type":"string"}}}},"value":{"type":"array","items":{"type":"string"}},"placeholder":{"type":"string"},"hasSelectAll":{"type":"boolean"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"readonly":{"type":"boolean"},"actions":{"type":"array"},"clientScripts":{"type":"array"}},"required":[],"$id":"cc_multi-select"};function validate50(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_multi-select" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.id!==undefined){if(typeof data.id!=="string"){const err0={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data.options!==undefined){let data1=data.options;if(Array.isArray(data1)){const len0=data1.length;for(let i0=0;i0<len0;i0++){let data2=data1[i0];if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.value!==undefined){if(typeof data2.value!=="string"){const err1={instancePath:instancePath+"/options/"+i0+"/value",schemaPath:"#/properties/options/items/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}}else{const err2={instancePath:instancePath+"/options/"+i0,schemaPath:"#/properties/options/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/options",schemaPath:"#/properties/options/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.value!==undefined){let data4=data.value;if(Array.isArray(data4)){const len1=data4.length;for(let i1=0;i1<len1;i1++){if(typeof data4[i1]!=="string"){const err4={instancePath:instancePath+"/value/"+i1,schemaPath:"#/properties/value/items/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}}else{const err5={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data.placeholder!==undefined){if(typeof data.placeholder!=="string"){const err6={instancePath:instancePath+"/placeholder",schemaPath:"#/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.hasSelectAll!==undefined){if(typeof data.hasSelectAll!=="boolean"){const err7={instancePath:instancePath+"/hasSelectAll",schemaPath:"#/properties/hasSelectAll/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err8={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err9={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err10={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.actions!==undefined){if(!Array.isArray(data.actions)){const err11={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err12={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}}else{const err13={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}validate50.errors=vErrors;return errors===0;}exports["cc_radio-dropdown"]=validate51;const schema52={"type":"object","properties":{"options":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"value":{"type":"string"},"secondaryValue":{"type":"string"},"isDisabled":{"type":"boolean"},"tooltip":{"type":"string"}}}},"color":{"type":"string","enum":["none","grey","red","orange","green","blue"]},"isDotted":{"type":"boolean"},"weight":{"type":"string","enum":["light","regular","semibold","bold"]},"hoverVariant":{"type":"string","enum":["default","border","bg"]},"selectedId":{"type":"string"},"selectedValue":{"type":"string"},"dropdownHeading":{"type":"string"},"hasSearch":{"type":"boolean"},"searchPlaceholder":{"type":"string"},"emptyStateTitle":{"type":"string"},"isDisabled":{"type":"boolean"},"isReadOnly":{"type":"boolean"}},"required":[],"$id":"cc_radio-dropdown"};function validate51(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_radio-dropdown" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.options!==undefined){let data0=data.options;if(Array.isArray(data0)){const len0=data0.length;for(let i0=0;i0<len0;i0++){let data1=data0[i0];if(data1&&typeof data1=="object"&&!Array.isArray(data1)){if(data1.id!==undefined){if(typeof data1.id!=="string"){const err0={instancePath:instancePath+"/options/"+i0+"/id",schemaPath:"#/properties/options/items/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data1.value!==undefined){if(typeof data1.value!=="string"){const err1={instancePath:instancePath+"/options/"+i0+"/value",schemaPath:"#/properties/options/items/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data1.secondaryValue!==undefined){if(typeof data1.secondaryValue!=="string"){const err2={instancePath:instancePath+"/options/"+i0+"/secondaryValue",schemaPath:"#/properties/options/items/properties/secondaryValue/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data1.isDisabled!==undefined){if(typeof data1.isDisabled!=="boolean"){const err3={instancePath:instancePath+"/options/"+i0+"/isDisabled",schemaPath:"#/properties/options/items/properties/isDisabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data1.tooltip!==undefined){if(typeof data1.tooltip!=="string"){const err4={instancePath:instancePath+"/options/"+i0+"/tooltip",schemaPath:"#/properties/options/items/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}}else{const err5={instancePath:instancePath+"/options/"+i0,schemaPath:"#/properties/options/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}}else{const err6={instancePath:instancePath+"/options",schemaPath:"#/properties/options/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.color!==undefined){let data7=data.color;if(typeof data7!=="string"){const err7={instancePath:instancePath+"/color",schemaPath:"#/properties/color/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}if(!(data7==="none"||data7==="grey"||data7==="red"||data7==="orange"||data7==="green"||data7==="blue")){const err8={instancePath:instancePath+"/color",schemaPath:"#/properties/color/enum",keyword:"enum",params:{allowedValues:schema52.properties.color.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data.isDotted!==undefined){if(typeof data.isDotted!=="boolean"){const err9={instancePath:instancePath+"/isDotted",schemaPath:"#/properties/isDotted/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.weight!==undefined){let data9=data.weight;if(typeof data9!=="string"){const err10={instancePath:instancePath+"/weight",schemaPath:"#/properties/weight/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}if(!(data9==="light"||data9==="regular"||data9==="semibold"||data9==="bold")){const err11={instancePath:instancePath+"/weight",schemaPath:"#/properties/weight/enum",keyword:"enum",params:{allowedValues:schema52.properties.weight.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.hoverVariant!==undefined){let data10=data.hoverVariant;if(typeof data10!=="string"){const err12={instancePath:instancePath+"/hoverVariant",schemaPath:"#/properties/hoverVariant/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}if(!(data10==="default"||data10==="border"||data10==="bg")){const err13={instancePath:instancePath+"/hoverVariant",schemaPath:"#/properties/hoverVariant/enum",keyword:"enum",params:{allowedValues:schema52.properties.hoverVariant.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.selectedId!==undefined){if(typeof data.selectedId!=="string"){const err14={instancePath:instancePath+"/selectedId",schemaPath:"#/properties/selectedId/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.selectedValue!==undefined){if(typeof data.selectedValue!=="string"){const err15={instancePath:instancePath+"/selectedValue",schemaPath:"#/properties/selectedValue/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.dropdownHeading!==undefined){if(typeof data.dropdownHeading!=="string"){const err16={instancePath:instancePath+"/dropdownHeading",schemaPath:"#/properties/dropdownHeading/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.hasSearch!==undefined){if(typeof data.hasSearch!=="boolean"){const err17={instancePath:instancePath+"/hasSearch",schemaPath:"#/properties/hasSearch/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.searchPlaceholder!==undefined){if(typeof data.searchPlaceholder!=="string"){const err18={instancePath:instancePath+"/searchPlaceholder",schemaPath:"#/properties/searchPlaceholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.emptyStateTitle!==undefined){if(typeof data.emptyStateTitle!=="string"){const err19={instancePath:instancePath+"/emptyStateTitle",schemaPath:"#/properties/emptyStateTitle/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.isDisabled!==undefined){if(typeof data.isDisabled!=="boolean"){const err20={instancePath:instancePath+"/isDisabled",schemaPath:"#/properties/isDisabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.isReadOnly!==undefined){if(typeof data.isReadOnly!=="boolean"){const err21={instancePath:instancePath+"/isReadOnly",schemaPath:"#/properties/isReadOnly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}validate51.errors=vErrors;return errors===0;}exports.cc_ribbon=validate52;const schema53={"type":"object","properties":{"text":{"type":"string"},"palette":{"type":"string","enum":["primary","secondary","danger","success","warning"]},"iconName":{"type":"string"},"iconSize":{"type":"string"},"size":{"type":"string","enum":["small","medium"]},"flagPlacement":{"type":"string","enum":["left","right"]}},"required":[],"$id":"cc_ribbon"};function validate52(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_ribbon" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.text!==undefined){if(typeof data.text!=="string"){const err0={instancePath:instancePath+"/text",schemaPath:"#/properties/text/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data.palette!==undefined){let data1=data.palette;if(typeof data1!=="string"){const err1={instancePath:instancePath+"/palette",schemaPath:"#/properties/palette/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(!(data1==="primary"||data1==="secondary"||data1==="danger"||data1==="success"||data1==="warning")){const err2={instancePath:instancePath+"/palette",schemaPath:"#/properties/palette/enum",keyword:"enum",params:{allowedValues:schema53.properties.palette.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.iconName!==undefined){if(typeof data.iconName!=="string"){const err3={instancePath:instancePath+"/iconName",schemaPath:"#/properties/iconName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.iconSize!==undefined){if(typeof data.iconSize!=="string"){const err4={instancePath:instancePath+"/iconSize",schemaPath:"#/properties/iconSize/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.size!==undefined){let data4=data.size;if(typeof data4!=="string"){const err5={instancePath:instancePath+"/size",schemaPath:"#/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}if(!(data4==="small"||data4==="medium")){const err6={instancePath:instancePath+"/size",schemaPath:"#/properties/size/enum",keyword:"enum",params:{allowedValues:schema53.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.flagPlacement!==undefined){let data5=data.flagPlacement;if(typeof data5!=="string"){const err7={instancePath:instancePath+"/flagPlacement",schemaPath:"#/properties/flagPlacement/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}if(!(data5==="left"||data5==="right")){const err8={instancePath:instancePath+"/flagPlacement",schemaPath:"#/properties/flagPlacement/enum",keyword:"enum",params:{allowedValues:schema53.properties.flagPlacement.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}validate52.errors=vErrors;return errors===0;}exports.cc_search=validate53;const schema54={"type":"object","properties":{"value":{"type":"string"}},"required":[],"$id":"cc_search"};function validate53(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_search" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.value!==undefined){if(typeof data.value!=="string"){const err0={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}}else{const err1={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}validate53.errors=vErrors;return errors===0;}exports.cc_section=validate54;const schema55={"type":"object","properties":{"id":{"type":"string"},"title":{"type":"string","maxLength":255,"pattern":"^[a-zA-Z0-9 _]*$"},"name":{"type":"string"},"description":{"type":"string","maxLength":10000},"headerActions":{"type":"array","items":{"type":"object"}},"titleActions":{"type":"array","items":{"type":"object"}},"isCollapsed":{"type":"boolean"},"isVisible":{"type":"boolean"},"type":{"type":"string"},"additionalDetails":{"type":"object"},"clientScripts":{"type":"array"},"fields":{"type":"array","minItems":0,"items":{"type":"object","anyOf":[{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":["string","number"]},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"maxLength":{"type":"number"},"ePHI":{"type":"boolean"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"maxLength":{"type":"number"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"boolean"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"maxLength":{"type":"number"},"currencySymbol":{"type":"string"},"currencyLocale":{"type":"string"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"maxLength":{"type":"number"},"ePHI":{"type":"boolean"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"maxLength":{"type":"number"},"placeholder":{"type":"string"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"lookup":{"type":"object"},"maxLength":{"type":"number"}},"required":["name"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"array"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"subType":{"type":"string","enum":["plain","colored","Plain","ColorCoded"]},"placeholder":{"type":"string"},"options":{"type":"array","items":{"type":"object","properties":{"value":{"type":"string"},"optionActions":{"type":"array","items":{"type":"object"}}},"required":["value"]}}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":["string","number"]},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"maxLength":{"type":"number"},"ePHI":{"type":"boolean"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"ePHI":{"type":"boolean"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"placeholder":{"type":"string"},"maxLength":{"type":"number"},"ePHI":{"type":"boolean"}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"subType":{"type":"string","enum":["plain","colored","colorcoded"]},"placeholder":{"type":"string"},"options":{"type":"array","items":{"type":"object","properties":{"value":{"type":"string"},"optionActions":{"type":"array","items":{"type":"object"}}},"required":["value"]}}},"required":["name","value"]},{"type":"object","properties":{"type":{"anyOf":[{"type":"object","properties":{"UIComponentName":{"type":"string"},"fieldToUIComponentTranslator":{},"translator":{}}},{"type":"string"}]},"uiConfig":{"type":"object","properties":{"size":{"type":"string","enum":["small","large"]},"breakRow":{"type":"boolean"}}},"id":{"type":"string"},"name":{"type":"string"},"label":{"type":"string"},"value":{"type":"string"},"isVisible":{"type":"boolean"},"isFocused":{"type":"boolean"},"errorMessage":{"type":"string"},"tooltip":{"type":"string"},"toolTipType":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"labelActions":{"type":"array","items":{"type":"object"}},"actions":{"type":"array","items":{"type":"object"}},"textOverflowMode":{"type":"string","enum":["clip","wrap"]},"isRead":{"type":"boolean"},"readonly":{"type":"boolean"},"clientScripts":{"type":"array"},"maxLength":{"type":"number"},"placeholder":{"type":"string"},"ePHI":{"type":"boolean"}},"required":["name","value"]},{"type":"object","properties":{"type":{"type":"string"},"value":{"type":"string"}},"required":["type","value"]}]}}},"required":[],"$id":"cc_section"};function validate54(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_section" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.id!==undefined){if(typeof data.id!=="string"){const err0={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data.title!==undefined){let data1=data.title;if(typeof data1==="string"){if(func2(data1)>255){const err1={instancePath:instancePath+"/title",schemaPath:"#/properties/title/maxLength",keyword:"maxLength",params:{limit:255},message:"must NOT have more than 255 characters"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(!pattern0.test(data1)){const err2={instancePath:instancePath+"/title",schemaPath:"#/properties/title/pattern",keyword:"pattern",params:{pattern:"^[a-zA-Z0-9 _]*$"},message:"must match pattern \""+"^[a-zA-Z0-9 _]*$"+"\""};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}else{const err3={instancePath:instancePath+"/title",schemaPath:"#/properties/title/type",keyword:"type",params:{type:"string"},message:"must be string"};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:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.description!==undefined){let data3=data.description;if(typeof data3==="string"){if(func2(data3)>10000){const err5={instancePath:instancePath+"/description",schemaPath:"#/properties/description/maxLength",keyword:"maxLength",params:{limit:10000},message:"must NOT have more than 10000 characters"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}else{const err6={instancePath:instancePath+"/description",schemaPath:"#/properties/description/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.headerActions!==undefined){let data4=data.headerActions;if(Array.isArray(data4)){const len0=data4.length;for(let i0=0;i0<len0;i0++){let data5=data4[i0];if(!(data5&&typeof data5=="object"&&!Array.isArray(data5))){const err7={instancePath:instancePath+"/headerActions/"+i0,schemaPath:"#/properties/headerActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}}else{const err8={instancePath:instancePath+"/headerActions",schemaPath:"#/properties/headerActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data.titleActions!==undefined){let data6=data.titleActions;if(Array.isArray(data6)){const len1=data6.length;for(let i1=0;i1<len1;i1++){let data7=data6[i1];if(!(data7&&typeof data7=="object"&&!Array.isArray(data7))){const err9={instancePath:instancePath+"/titleActions/"+i1,schemaPath:"#/properties/titleActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}}else{const err10={instancePath:instancePath+"/titleActions",schemaPath:"#/properties/titleActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.isCollapsed!==undefined){if(typeof data.isCollapsed!=="boolean"){const err11={instancePath:instancePath+"/isCollapsed",schemaPath:"#/properties/isCollapsed/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.isVisible!==undefined){if(typeof data.isVisible!=="boolean"){const err12={instancePath:instancePath+"/isVisible",schemaPath:"#/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.type!==undefined){if(typeof data.type!=="string"){const err13={instancePath:instancePath+"/type",schemaPath:"#/properties/type/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.additionalDetails!==undefined){let data11=data.additionalDetails;if(!(data11&&typeof data11=="object"&&!Array.isArray(data11))){const err14={instancePath:instancePath+"/additionalDetails",schemaPath:"#/properties/additionalDetails/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err15={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.fields!==undefined){let data13=data.fields;if(Array.isArray(data13)){if(data13.length<0){const err16={instancePath:instancePath+"/fields",schemaPath:"#/properties/fields/minItems",keyword:"minItems",params:{limit:0},message:"must NOT have fewer than 0 items"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}const len2=data13.length;for(let i2=0;i2<len2;i2++){let data14=data13[i2];if(!(data14&&typeof data14=="object"&&!Array.isArray(data14))){const err17={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}const _errs31=errors;let valid7=false;const _errs32=errors;if(data14&&typeof data14=="object"&&!Array.isArray(data14)){if(data14.name===undefined){const err18={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/0/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}if(data14.value===undefined){const err19={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/0/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}if(data14.type!==undefined){let data15=data14.type;const _errs35=errors;let valid9=false;const _errs36=errors;if(data15&&typeof data15=="object"&&!Array.isArray(data15)){if(data15.UIComponentName!==undefined){if(typeof data15.UIComponentName!=="string"){const err20={instancePath:instancePath+"/fields/"+i2+"/type/UIComponentName",schemaPath:"#/properties/fields/items/anyOf/0/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}}else{const err21={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/0/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}var _valid1=_errs36===errors;valid9=valid9||_valid1;if(!valid9){const _errs40=errors;if(typeof data15!=="string"){const err22={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/0/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}var _valid1=_errs40===errors;valid9=valid9||_valid1;}if(!valid9){const err23={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/0/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}else{errors=_errs35;if(vErrors!==null){if(_errs35){vErrors.length=_errs35;}else{vErrors=null;}}}}if(data14.uiConfig!==undefined){let data17=data14.uiConfig;if(data17&&typeof data17=="object"&&!Array.isArray(data17)){if(data17.size!==undefined){let data18=data17.size;if(typeof data18!=="string"){const err24={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/0/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}if(!(data18==="small"||data18==="large")){const err25={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/0/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[0].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}}if(data17.breakRow!==undefined){if(typeof data17.breakRow!=="boolean"){const err26={instancePath:instancePath+"/fields/"+i2+"/uiConfig/breakRow",schemaPath:"#/properties/fields/items/anyOf/0/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}}else{const err27={instancePath:instancePath+"/fields/"+i2+"/uiConfig",schemaPath:"#/properties/fields/items/anyOf/0/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data14.id!==undefined){if(typeof data14.id!=="string"){const err28={instancePath:instancePath+"/fields/"+i2+"/id",schemaPath:"#/properties/fields/items/anyOf/0/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data14.name!==undefined){if(typeof data14.name!=="string"){const err29={instancePath:instancePath+"/fields/"+i2+"/name",schemaPath:"#/properties/fields/items/anyOf/0/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}if(data14.label!==undefined){if(typeof data14.label!=="string"){const err30={instancePath:instancePath+"/fields/"+i2+"/label",schemaPath:"#/properties/fields/items/anyOf/0/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}}if(data14.value!==undefined){let data23=data14.value;if(typeof data23!=="string"&&!(typeof data23=="number")){const err31={instancePath:instancePath+"/fields/"+i2+"/value",schemaPath:"#/properties/fields/items/anyOf/0/properties/value/type",keyword:"type",params:{type:schema55.properties.fields.items.anyOf[0].properties.value.type},message:"must be string,number"};if(vErrors===null){vErrors=[err31];}else{vErrors.push(err31);}errors++;}}if(data14.isVisible!==undefined){if(typeof data14.isVisible!=="boolean"){const err32={instancePath:instancePath+"/fields/"+i2+"/isVisible",schemaPath:"#/properties/fields/items/anyOf/0/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err32];}else{vErrors.push(err32);}errors++;}}if(data14.isFocused!==undefined){if(typeof data14.isFocused!=="boolean"){const err33={instancePath:instancePath+"/fields/"+i2+"/isFocused",schemaPath:"#/properties/fields/items/anyOf/0/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err33];}else{vErrors.push(err33);}errors++;}}if(data14.errorMessage!==undefined){if(typeof data14.errorMessage!=="string"){const err34={instancePath:instancePath+"/fields/"+i2+"/errorMessage",schemaPath:"#/properties/fields/items/anyOf/0/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err34];}else{vErrors.push(err34);}errors++;}}if(data14.tooltip!==undefined){if(typeof data14.tooltip!=="string"){const err35={instancePath:instancePath+"/fields/"+i2+"/tooltip",schemaPath:"#/properties/fields/items/anyOf/0/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err35];}else{vErrors.push(err35);}errors++;}}if(data14.toolTipType!==undefined){if(typeof data14.toolTipType!=="string"){const err36={instancePath:instancePath+"/fields/"+i2+"/toolTipType",schemaPath:"#/properties/fields/items/anyOf/0/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err36];}else{vErrors.push(err36);}errors++;}}if(data14.required!==undefined){if(typeof data14.required!=="boolean"){const err37={instancePath:instancePath+"/fields/"+i2+"/required",schemaPath:"#/properties/fields/items/anyOf/0/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err37];}else{vErrors.push(err37);}errors++;}}if(data14.disabled!==undefined){if(typeof data14.disabled!=="boolean"){const err38={instancePath:instancePath+"/fields/"+i2+"/disabled",schemaPath:"#/properties/fields/items/anyOf/0/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err38];}else{vErrors.push(err38);}errors++;}}if(data14.labelActions!==undefined){let data31=data14.labelActions;if(Array.isArray(data31)){const len3=data31.length;for(let i3=0;i3<len3;i3++){let data32=data31[i3];if(!(data32&&typeof data32=="object"&&!Array.isArray(data32))){const err39={instancePath:instancePath+"/fields/"+i2+"/labelActions/"+i3,schemaPath:"#/properties/fields/items/anyOf/0/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err39];}else{vErrors.push(err39);}errors++;}}}else{const err40={instancePath:instancePath+"/fields/"+i2+"/labelActions",schemaPath:"#/properties/fields/items/anyOf/0/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err40];}else{vErrors.push(err40);}errors++;}}if(data14.actions!==undefined){let data33=data14.actions;if(Array.isArray(data33)){const len4=data33.length;for(let i4=0;i4<len4;i4++){let data34=data33[i4];if(!(data34&&typeof data34=="object"&&!Array.isArray(data34))){const err41={instancePath:instancePath+"/fields/"+i2+"/actions/"+i4,schemaPath:"#/properties/fields/items/anyOf/0/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err41];}else{vErrors.push(err41);}errors++;}}}else{const err42={instancePath:instancePath+"/fields/"+i2+"/actions",schemaPath:"#/properties/fields/items/anyOf/0/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err42];}else{vErrors.push(err42);}errors++;}}if(data14.textOverflowMode!==undefined){let data35=data14.textOverflowMode;if(typeof data35!=="string"){const err43={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/0/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err43];}else{vErrors.push(err43);}errors++;}if(!(data35==="clip"||data35==="wrap")){const err44={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/0/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[0].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err44];}else{vErrors.push(err44);}errors++;}}if(data14.isRead!==undefined){if(typeof data14.isRead!=="boolean"){const err45={instancePath:instancePath+"/fields/"+i2+"/isRead",schemaPath:"#/properties/fields/items/anyOf/0/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err45];}else{vErrors.push(err45);}errors++;}}if(data14.readonly!==undefined){if(typeof data14.readonly!=="boolean"){const err46={instancePath:instancePath+"/fields/"+i2+"/readonly",schemaPath:"#/properties/fields/items/anyOf/0/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err46];}else{vErrors.push(err46);}errors++;}}if(data14.clientScripts!==undefined){if(!Array.isArray(data14.clientScripts)){const err47={instancePath:instancePath+"/fields/"+i2+"/clientScripts",schemaPath:"#/properties/fields/items/anyOf/0/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err47];}else{vErrors.push(err47);}errors++;}}if(data14.placeholder!==undefined){if(typeof data14.placeholder!=="string"){const err48={instancePath:instancePath+"/fields/"+i2+"/placeholder",schemaPath:"#/properties/fields/items/anyOf/0/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err48];}else{vErrors.push(err48);}errors++;}}if(data14.maxLength!==undefined){if(!(typeof data14.maxLength=="number")){const err49={instancePath:instancePath+"/fields/"+i2+"/maxLength",schemaPath:"#/properties/fields/items/anyOf/0/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err49];}else{vErrors.push(err49);}errors++;}}if(data14.ePHI!==undefined){if(typeof data14.ePHI!=="boolean"){const err50={instancePath:instancePath+"/fields/"+i2+"/ePHI",schemaPath:"#/properties/fields/items/anyOf/0/properties/ePHI/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err50];}else{vErrors.push(err50);}errors++;}}}else{const err51={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err51];}else{vErrors.push(err51);}errors++;}var _valid0=_errs32===errors;valid7=valid7||_valid0;if(!valid7){const _errs92=errors;if(data14&&typeof data14=="object"&&!Array.isArray(data14)){if(data14.name===undefined){const err52={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/1/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err52];}else{vErrors.push(err52);}errors++;}if(data14.value===undefined){const err53={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/1/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err53];}else{vErrors.push(err53);}errors++;}if(data14.type!==undefined){let data42=data14.type;const _errs95=errors;let valid17=false;const _errs96=errors;if(data42&&typeof data42=="object"&&!Array.isArray(data42)){if(data42.UIComponentName!==undefined){if(typeof data42.UIComponentName!=="string"){const err54={instancePath:instancePath+"/fields/"+i2+"/type/UIComponentName",schemaPath:"#/properties/fields/items/anyOf/1/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err54];}else{vErrors.push(err54);}errors++;}}}else{const err55={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/1/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err55];}else{vErrors.push(err55);}errors++;}var _valid2=_errs96===errors;valid17=valid17||_valid2;if(!valid17){const _errs100=errors;if(typeof data42!=="string"){const err56={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/1/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err56];}else{vErrors.push(err56);}errors++;}var _valid2=_errs100===errors;valid17=valid17||_valid2;}if(!valid17){const err57={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/1/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err57];}else{vErrors.push(err57);}errors++;}else{errors=_errs95;if(vErrors!==null){if(_errs95){vErrors.length=_errs95;}else{vErrors=null;}}}}if(data14.uiConfig!==undefined){let data44=data14.uiConfig;if(data44&&typeof data44=="object"&&!Array.isArray(data44)){if(data44.size!==undefined){let data45=data44.size;if(typeof data45!=="string"){const err58={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/1/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err58];}else{vErrors.push(err58);}errors++;}if(!(data45==="small"||data45==="large")){const err59={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/1/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[1].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err59];}else{vErrors.push(err59);}errors++;}}if(data44.breakRow!==undefined){if(typeof data44.breakRow!=="boolean"){const err60={instancePath:instancePath+"/fields/"+i2+"/uiConfig/breakRow",schemaPath:"#/properties/fields/items/anyOf/1/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err60];}else{vErrors.push(err60);}errors++;}}}else{const err61={instancePath:instancePath+"/fields/"+i2+"/uiConfig",schemaPath:"#/properties/fields/items/anyOf/1/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err61];}else{vErrors.push(err61);}errors++;}}if(data14.id!==undefined){if(typeof data14.id!=="string"){const err62={instancePath:instancePath+"/fields/"+i2+"/id",schemaPath:"#/properties/fields/items/anyOf/1/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err62];}else{vErrors.push(err62);}errors++;}}if(data14.name!==undefined){if(typeof data14.name!=="string"){const err63={instancePath:instancePath+"/fields/"+i2+"/name",schemaPath:"#/properties/fields/items/anyOf/1/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err63];}else{vErrors.push(err63);}errors++;}}if(data14.label!==undefined){if(typeof data14.label!=="string"){const err64={instancePath:instancePath+"/fields/"+i2+"/label",schemaPath:"#/properties/fields/items/anyOf/1/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err64];}else{vErrors.push(err64);}errors++;}}if(data14.value!==undefined){if(typeof data14.value!=="string"){const err65={instancePath:instancePath+"/fields/"+i2+"/value",schemaPath:"#/properties/fields/items/anyOf/1/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err65];}else{vErrors.push(err65);}errors++;}}if(data14.isVisible!==undefined){if(typeof data14.isVisible!=="boolean"){const err66={instancePath:instancePath+"/fields/"+i2+"/isVisible",schemaPath:"#/properties/fields/items/anyOf/1/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err66];}else{vErrors.push(err66);}errors++;}}if(data14.isFocused!==undefined){if(typeof data14.isFocused!=="boolean"){const err67={instancePath:instancePath+"/fields/"+i2+"/isFocused",schemaPath:"#/properties/fields/items/anyOf/1/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err67];}else{vErrors.push(err67);}errors++;}}if(data14.errorMessage!==undefined){if(typeof data14.errorMessage!=="string"){const err68={instancePath:instancePath+"/fields/"+i2+"/errorMessage",schemaPath:"#/properties/fields/items/anyOf/1/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err68];}else{vErrors.push(err68);}errors++;}}if(data14.tooltip!==undefined){if(typeof data14.tooltip!=="string"){const err69={instancePath:instancePath+"/fields/"+i2+"/tooltip",schemaPath:"#/properties/fields/items/anyOf/1/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err69];}else{vErrors.push(err69);}errors++;}}if(data14.toolTipType!==undefined){if(typeof data14.toolTipType!=="string"){const err70={instancePath:instancePath+"/fields/"+i2+"/toolTipType",schemaPath:"#/properties/fields/items/anyOf/1/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err70];}else{vErrors.push(err70);}errors++;}}if(data14.required!==undefined){if(typeof data14.required!=="boolean"){const err71={instancePath:instancePath+"/fields/"+i2+"/required",schemaPath:"#/properties/fields/items/anyOf/1/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err71];}else{vErrors.push(err71);}errors++;}}if(data14.disabled!==undefined){if(typeof data14.disabled!=="boolean"){const err72={instancePath:instancePath+"/fields/"+i2+"/disabled",schemaPath:"#/properties/fields/items/anyOf/1/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err72];}else{vErrors.push(err72);}errors++;}}if(data14.labelActions!==undefined){let data58=data14.labelActions;if(Array.isArray(data58)){const len5=data58.length;for(let i5=0;i5<len5;i5++){let data59=data58[i5];if(!(data59&&typeof data59=="object"&&!Array.isArray(data59))){const err73={instancePath:instancePath+"/fields/"+i2+"/labelActions/"+i5,schemaPath:"#/properties/fields/items/anyOf/1/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err73];}else{vErrors.push(err73);}errors++;}}}else{const err74={instancePath:instancePath+"/fields/"+i2+"/labelActions",schemaPath:"#/properties/fields/items/anyOf/1/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err74];}else{vErrors.push(err74);}errors++;}}if(data14.actions!==undefined){let data60=data14.actions;if(Array.isArray(data60)){const len6=data60.length;for(let i6=0;i6<len6;i6++){let data61=data60[i6];if(!(data61&&typeof data61=="object"&&!Array.isArray(data61))){const err75={instancePath:instancePath+"/fields/"+i2+"/actions/"+i6,schemaPath:"#/properties/fields/items/anyOf/1/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err75];}else{vErrors.push(err75);}errors++;}}}else{const err76={instancePath:instancePath+"/fields/"+i2+"/actions",schemaPath:"#/properties/fields/items/anyOf/1/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err76];}else{vErrors.push(err76);}errors++;}}if(data14.textOverflowMode!==undefined){let data62=data14.textOverflowMode;if(typeof data62!=="string"){const err77={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/1/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err77];}else{vErrors.push(err77);}errors++;}if(!(data62==="clip"||data62==="wrap")){const err78={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/1/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[1].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err78];}else{vErrors.push(err78);}errors++;}}if(data14.isRead!==undefined){if(typeof data14.isRead!=="boolean"){const err79={instancePath:instancePath+"/fields/"+i2+"/isRead",schemaPath:"#/properties/fields/items/anyOf/1/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err79];}else{vErrors.push(err79);}errors++;}}if(data14.readonly!==undefined){if(typeof data14.readonly!=="boolean"){const err80={instancePath:instancePath+"/fields/"+i2+"/readonly",schemaPath:"#/properties/fields/items/anyOf/1/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err80];}else{vErrors.push(err80);}errors++;}}if(data14.clientScripts!==undefined){if(!Array.isArray(data14.clientScripts)){const err81={instancePath:instancePath+"/fields/"+i2+"/clientScripts",schemaPath:"#/properties/fields/items/anyOf/1/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err81];}else{vErrors.push(err81);}errors++;}}if(data14.placeholder!==undefined){if(typeof data14.placeholder!=="string"){const err82={instancePath:instancePath+"/fields/"+i2+"/placeholder",schemaPath:"#/properties/fields/items/anyOf/1/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err82];}else{vErrors.push(err82);}errors++;}}if(data14.maxLength!==undefined){if(!(typeof data14.maxLength=="number")){const err83={instancePath:instancePath+"/fields/"+i2+"/maxLength",schemaPath:"#/properties/fields/items/anyOf/1/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err83];}else{vErrors.push(err83);}errors++;}}}else{const err84={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/1/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err84];}else{vErrors.push(err84);}errors++;}var _valid0=_errs92===errors;valid7=valid7||_valid0;if(!valid7){const _errs150=errors;if(data14&&typeof data14=="object"&&!Array.isArray(data14)){if(data14.name===undefined){const err85={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/2/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err85];}else{vErrors.push(err85);}errors++;}if(data14.value===undefined){const err86={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/2/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err86];}else{vErrors.push(err86);}errors++;}if(data14.type!==undefined){let data68=data14.type;const _errs153=errors;let valid25=false;const _errs154=errors;if(data68&&typeof data68=="object"&&!Array.isArray(data68)){if(data68.UIComponentName!==undefined){if(typeof data68.UIComponentName!=="string"){const err87={instancePath:instancePath+"/fields/"+i2+"/type/UIComponentName",schemaPath:"#/properties/fields/items/anyOf/2/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err87];}else{vErrors.push(err87);}errors++;}}}else{const err88={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/2/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err88];}else{vErrors.push(err88);}errors++;}var _valid3=_errs154===errors;valid25=valid25||_valid3;if(!valid25){const _errs158=errors;if(typeof data68!=="string"){const err89={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/2/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err89];}else{vErrors.push(err89);}errors++;}var _valid3=_errs158===errors;valid25=valid25||_valid3;}if(!valid25){const err90={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/2/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err90];}else{vErrors.push(err90);}errors++;}else{errors=_errs153;if(vErrors!==null){if(_errs153){vErrors.length=_errs153;}else{vErrors=null;}}}}if(data14.uiConfig!==undefined){let data70=data14.uiConfig;if(data70&&typeof data70=="object"&&!Array.isArray(data70)){if(data70.size!==undefined){let data71=data70.size;if(typeof data71!=="string"){const err91={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/2/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err91];}else{vErrors.push(err91);}errors++;}if(!(data71==="small"||data71==="large")){const err92={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/2/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[2].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err92];}else{vErrors.push(err92);}errors++;}}if(data70.breakRow!==undefined){if(typeof data70.breakRow!=="boolean"){const err93={instancePath:instancePath+"/fields/"+i2+"/uiConfig/breakRow",schemaPath:"#/properties/fields/items/anyOf/2/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err93];}else{vErrors.push(err93);}errors++;}}}else{const err94={instancePath:instancePath+"/fields/"+i2+"/uiConfig",schemaPath:"#/properties/fields/items/anyOf/2/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err94];}else{vErrors.push(err94);}errors++;}}if(data14.id!==undefined){if(typeof data14.id!=="string"){const err95={instancePath:instancePath+"/fields/"+i2+"/id",schemaPath:"#/properties/fields/items/anyOf/2/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err95];}else{vErrors.push(err95);}errors++;}}if(data14.name!==undefined){if(typeof data14.name!=="string"){const err96={instancePath:instancePath+"/fields/"+i2+"/name",schemaPath:"#/properties/fields/items/anyOf/2/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err96];}else{vErrors.push(err96);}errors++;}}if(data14.label!==undefined){if(typeof data14.label!=="string"){const err97={instancePath:instancePath+"/fields/"+i2+"/label",schemaPath:"#/properties/fields/items/anyOf/2/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err97];}else{vErrors.push(err97);}errors++;}}if(data14.value!==undefined){if(typeof data14.value!=="boolean"){const err98={instancePath:instancePath+"/fields/"+i2+"/value",schemaPath:"#/properties/fields/items/anyOf/2/properties/value/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err98];}else{vErrors.push(err98);}errors++;}}if(data14.isVisible!==undefined){if(typeof data14.isVisible!=="boolean"){const err99={instancePath:instancePath+"/fields/"+i2+"/isVisible",schemaPath:"#/properties/fields/items/anyOf/2/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err99];}else{vErrors.push(err99);}errors++;}}if(data14.isFocused!==undefined){if(typeof data14.isFocused!=="boolean"){const err100={instancePath:instancePath+"/fields/"+i2+"/isFocused",schemaPath:"#/properties/fields/items/anyOf/2/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err100];}else{vErrors.push(err100);}errors++;}}if(data14.errorMessage!==undefined){if(typeof data14.errorMessage!=="string"){const err101={instancePath:instancePath+"/fields/"+i2+"/errorMessage",schemaPath:"#/properties/fields/items/anyOf/2/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err101];}else{vErrors.push(err101);}errors++;}}if(data14.tooltip!==undefined){if(typeof data14.tooltip!=="string"){const err102={instancePath:instancePath+"/fields/"+i2+"/tooltip",schemaPath:"#/properties/fields/items/anyOf/2/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err102];}else{vErrors.push(err102);}errors++;}}if(data14.toolTipType!==undefined){if(typeof data14.toolTipType!=="string"){const err103={instancePath:instancePath+"/fields/"+i2+"/toolTipType",schemaPath:"#/properties/fields/items/anyOf/2/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err103];}else{vErrors.push(err103);}errors++;}}if(data14.required!==undefined){if(typeof data14.required!=="boolean"){const err104={instancePath:instancePath+"/fields/"+i2+"/required",schemaPath:"#/properties/fields/items/anyOf/2/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err104];}else{vErrors.push(err104);}errors++;}}if(data14.disabled!==undefined){if(typeof data14.disabled!=="boolean"){const err105={instancePath:instancePath+"/fields/"+i2+"/disabled",schemaPath:"#/properties/fields/items/anyOf/2/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err105];}else{vErrors.push(err105);}errors++;}}if(data14.labelActions!==undefined){let data84=data14.labelActions;if(Array.isArray(data84)){const len7=data84.length;for(let i7=0;i7<len7;i7++){let data85=data84[i7];if(!(data85&&typeof data85=="object"&&!Array.isArray(data85))){const err106={instancePath:instancePath+"/fields/"+i2+"/labelActions/"+i7,schemaPath:"#/properties/fields/items/anyOf/2/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err106];}else{vErrors.push(err106);}errors++;}}}else{const err107={instancePath:instancePath+"/fields/"+i2+"/labelActions",schemaPath:"#/properties/fields/items/anyOf/2/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err107];}else{vErrors.push(err107);}errors++;}}if(data14.actions!==undefined){let data86=data14.actions;if(Array.isArray(data86)){const len8=data86.length;for(let i8=0;i8<len8;i8++){let data87=data86[i8];if(!(data87&&typeof data87=="object"&&!Array.isArray(data87))){const err108={instancePath:instancePath+"/fields/"+i2+"/actions/"+i8,schemaPath:"#/properties/fields/items/anyOf/2/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err108];}else{vErrors.push(err108);}errors++;}}}else{const err109={instancePath:instancePath+"/fields/"+i2+"/actions",schemaPath:"#/properties/fields/items/anyOf/2/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err109];}else{vErrors.push(err109);}errors++;}}if(data14.textOverflowMode!==undefined){let data88=data14.textOverflowMode;if(typeof data88!=="string"){const err110={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/2/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err110];}else{vErrors.push(err110);}errors++;}if(!(data88==="clip"||data88==="wrap")){const err111={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/2/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[2].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err111];}else{vErrors.push(err111);}errors++;}}if(data14.isRead!==undefined){if(typeof data14.isRead!=="boolean"){const err112={instancePath:instancePath+"/fields/"+i2+"/isRead",schemaPath:"#/properties/fields/items/anyOf/2/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err112];}else{vErrors.push(err112);}errors++;}}if(data14.readonly!==undefined){if(typeof data14.readonly!=="boolean"){const err113={instancePath:instancePath+"/fields/"+i2+"/readonly",schemaPath:"#/properties/fields/items/anyOf/2/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err113];}else{vErrors.push(err113);}errors++;}}if(data14.clientScripts!==undefined){if(!Array.isArray(data14.clientScripts)){const err114={instancePath:instancePath+"/fields/"+i2+"/clientScripts",schemaPath:"#/properties/fields/items/anyOf/2/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err114];}else{vErrors.push(err114);}errors++;}}}else{const err115={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/2/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err115];}else{vErrors.push(err115);}errors++;}var _valid0=_errs150===errors;valid7=valid7||_valid0;if(!valid7){const _errs204=errors;if(data14&&typeof data14=="object"&&!Array.isArray(data14)){if(data14.name===undefined){const err116={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/3/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err116];}else{vErrors.push(err116);}errors++;}if(data14.value===undefined){const err117={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/3/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err117];}else{vErrors.push(err117);}errors++;}if(data14.type!==undefined){let data92=data14.type;const _errs207=errors;let valid33=false;const _errs208=errors;if(data92&&typeof data92=="object"&&!Array.isArray(data92)){if(data92.UIComponentName!==undefined){if(typeof data92.UIComponentName!=="string"){const err118={instancePath:instancePath+"/fields/"+i2+"/type/UIComponentName",schemaPath:"#/properties/fields/items/anyOf/3/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err118];}else{vErrors.push(err118);}errors++;}}}else{const err119={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/3/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err119];}else{vErrors.push(err119);}errors++;}var _valid4=_errs208===errors;valid33=valid33||_valid4;if(!valid33){const _errs212=errors;if(typeof data92!=="string"){const err120={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/3/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err120];}else{vErrors.push(err120);}errors++;}var _valid4=_errs212===errors;valid33=valid33||_valid4;}if(!valid33){const err121={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/3/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err121];}else{vErrors.push(err121);}errors++;}else{errors=_errs207;if(vErrors!==null){if(_errs207){vErrors.length=_errs207;}else{vErrors=null;}}}}if(data14.uiConfig!==undefined){let data94=data14.uiConfig;if(data94&&typeof data94=="object"&&!Array.isArray(data94)){if(data94.size!==undefined){let data95=data94.size;if(typeof data95!=="string"){const err122={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/3/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err122];}else{vErrors.push(err122);}errors++;}if(!(data95==="small"||data95==="large")){const err123={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/3/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[3].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err123];}else{vErrors.push(err123);}errors++;}}if(data94.breakRow!==undefined){if(typeof data94.breakRow!=="boolean"){const err124={instancePath:instancePath+"/fields/"+i2+"/uiConfig/breakRow",schemaPath:"#/properties/fields/items/anyOf/3/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err124];}else{vErrors.push(err124);}errors++;}}}else{const err125={instancePath:instancePath+"/fields/"+i2+"/uiConfig",schemaPath:"#/properties/fields/items/anyOf/3/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err125];}else{vErrors.push(err125);}errors++;}}if(data14.id!==undefined){if(typeof data14.id!=="string"){const err126={instancePath:instancePath+"/fields/"+i2+"/id",schemaPath:"#/properties/fields/items/anyOf/3/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err126];}else{vErrors.push(err126);}errors++;}}if(data14.name!==undefined){if(typeof data14.name!=="string"){const err127={instancePath:instancePath+"/fields/"+i2+"/name",schemaPath:"#/properties/fields/items/anyOf/3/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err127];}else{vErrors.push(err127);}errors++;}}if(data14.label!==undefined){if(typeof data14.label!=="string"){const err128={instancePath:instancePath+"/fields/"+i2+"/label",schemaPath:"#/properties/fields/items/anyOf/3/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err128];}else{vErrors.push(err128);}errors++;}}if(data14.value!==undefined){if(typeof data14.value!=="string"){const err129={instancePath:instancePath+"/fields/"+i2+"/value",schemaPath:"#/properties/fields/items/anyOf/3/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err129];}else{vErrors.push(err129);}errors++;}}if(data14.isVisible!==undefined){if(typeof data14.isVisible!=="boolean"){const err130={instancePath:instancePath+"/fields/"+i2+"/isVisible",schemaPath:"#/properties/fields/items/anyOf/3/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err130];}else{vErrors.push(err130);}errors++;}}if(data14.isFocused!==undefined){if(typeof data14.isFocused!=="boolean"){const err131={instancePath:instancePath+"/fields/"+i2+"/isFocused",schemaPath:"#/properties/fields/items/anyOf/3/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err131];}else{vErrors.push(err131);}errors++;}}if(data14.errorMessage!==undefined){if(typeof data14.errorMessage!=="string"){const err132={instancePath:instancePath+"/fields/"+i2+"/errorMessage",schemaPath:"#/properties/fields/items/anyOf/3/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err132];}else{vErrors.push(err132);}errors++;}}if(data14.tooltip!==undefined){if(typeof data14.tooltip!=="string"){const err133={instancePath:instancePath+"/fields/"+i2+"/tooltip",schemaPath:"#/properties/fields/items/anyOf/3/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err133];}else{vErrors.push(err133);}errors++;}}if(data14.toolTipType!==undefined){if(typeof data14.toolTipType!=="string"){const err134={instancePath:instancePath+"/fields/"+i2+"/toolTipType",schemaPath:"#/properties/fields/items/anyOf/3/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err134];}else{vErrors.push(err134);}errors++;}}if(data14.required!==undefined){if(typeof data14.required!=="boolean"){const err135={instancePath:instancePath+"/fields/"+i2+"/required",schemaPath:"#/properties/fields/items/anyOf/3/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err135];}else{vErrors.push(err135);}errors++;}}if(data14.disabled!==undefined){if(typeof data14.disabled!=="boolean"){const err136={instancePath:instancePath+"/fields/"+i2+"/disabled",schemaPath:"#/properties/fields/items/anyOf/3/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err136];}else{vErrors.push(err136);}errors++;}}if(data14.labelActions!==undefined){let data108=data14.labelActions;if(Array.isArray(data108)){const len9=data108.length;for(let i9=0;i9<len9;i9++){let data109=data108[i9];if(!(data109&&typeof data109=="object"&&!Array.isArray(data109))){const err137={instancePath:instancePath+"/fields/"+i2+"/labelActions/"+i9,schemaPath:"#/properties/fields/items/anyOf/3/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err137];}else{vErrors.push(err137);}errors++;}}}else{const err138={instancePath:instancePath+"/fields/"+i2+"/labelActions",schemaPath:"#/properties/fields/items/anyOf/3/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err138];}else{vErrors.push(err138);}errors++;}}if(data14.actions!==undefined){let data110=data14.actions;if(Array.isArray(data110)){const len10=data110.length;for(let i10=0;i10<len10;i10++){let data111=data110[i10];if(!(data111&&typeof data111=="object"&&!Array.isArray(data111))){const err139={instancePath:instancePath+"/fields/"+i2+"/actions/"+i10,schemaPath:"#/properties/fields/items/anyOf/3/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err139];}else{vErrors.push(err139);}errors++;}}}else{const err140={instancePath:instancePath+"/fields/"+i2+"/actions",schemaPath:"#/properties/fields/items/anyOf/3/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err140];}else{vErrors.push(err140);}errors++;}}if(data14.textOverflowMode!==undefined){let data112=data14.textOverflowMode;if(typeof data112!=="string"){const err141={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/3/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err141];}else{vErrors.push(err141);}errors++;}if(!(data112==="clip"||data112==="wrap")){const err142={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/3/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[3].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err142];}else{vErrors.push(err142);}errors++;}}if(data14.isRead!==undefined){if(typeof data14.isRead!=="boolean"){const err143={instancePath:instancePath+"/fields/"+i2+"/isRead",schemaPath:"#/properties/fields/items/anyOf/3/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err143];}else{vErrors.push(err143);}errors++;}}if(data14.readonly!==undefined){if(typeof data14.readonly!=="boolean"){const err144={instancePath:instancePath+"/fields/"+i2+"/readonly",schemaPath:"#/properties/fields/items/anyOf/3/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err144];}else{vErrors.push(err144);}errors++;}}if(data14.clientScripts!==undefined){if(!Array.isArray(data14.clientScripts)){const err145={instancePath:instancePath+"/fields/"+i2+"/clientScripts",schemaPath:"#/properties/fields/items/anyOf/3/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err145];}else{vErrors.push(err145);}errors++;}}if(data14.placeholder!==undefined){if(typeof data14.placeholder!=="string"){const err146={instancePath:instancePath+"/fields/"+i2+"/placeholder",schemaPath:"#/properties/fields/items/anyOf/3/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err146];}else{vErrors.push(err146);}errors++;}}if(data14.maxLength!==undefined){if(!(typeof data14.maxLength=="number")){const err147={instancePath:instancePath+"/fields/"+i2+"/maxLength",schemaPath:"#/properties/fields/items/anyOf/3/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err147];}else{vErrors.push(err147);}errors++;}}if(data14.currencySymbol!==undefined){if(typeof data14.currencySymbol!=="string"){const err148={instancePath:instancePath+"/fields/"+i2+"/currencySymbol",schemaPath:"#/properties/fields/items/anyOf/3/properties/currencySymbol/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err148];}else{vErrors.push(err148);}errors++;}}if(data14.currencyLocale!==undefined){if(typeof data14.currencyLocale!=="string"){const err149={instancePath:instancePath+"/fields/"+i2+"/currencyLocale",schemaPath:"#/properties/fields/items/anyOf/3/properties/currencyLocale/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err149];}else{vErrors.push(err149);}errors++;}}}else{const err150={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/3/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err150];}else{vErrors.push(err150);}errors++;}var _valid0=_errs204===errors;valid7=valid7||_valid0;if(!valid7){const _errs266=errors;if(data14&&typeof data14=="object"&&!Array.isArray(data14)){if(data14.name===undefined){const err151={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/4/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err151];}else{vErrors.push(err151);}errors++;}if(data14.value===undefined){const err152={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/4/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err152];}else{vErrors.push(err152);}errors++;}if(data14.type!==undefined){let data120=data14.type;const _errs269=errors;let valid41=false;const _errs270=errors;if(data120&&typeof data120=="object"&&!Array.isArray(data120)){if(data120.UIComponentName!==undefined){if(typeof data120.UIComponentName!=="string"){const err153={instancePath:instancePath+"/fields/"+i2+"/type/UIComponentName",schemaPath:"#/properties/fields/items/anyOf/4/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err153];}else{vErrors.push(err153);}errors++;}}}else{const err154={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/4/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err154];}else{vErrors.push(err154);}errors++;}var _valid5=_errs270===errors;valid41=valid41||_valid5;if(!valid41){const _errs274=errors;if(typeof data120!=="string"){const err155={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/4/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err155];}else{vErrors.push(err155);}errors++;}var _valid5=_errs274===errors;valid41=valid41||_valid5;}if(!valid41){const err156={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/4/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err156];}else{vErrors.push(err156);}errors++;}else{errors=_errs269;if(vErrors!==null){if(_errs269){vErrors.length=_errs269;}else{vErrors=null;}}}}if(data14.uiConfig!==undefined){let data122=data14.uiConfig;if(data122&&typeof data122=="object"&&!Array.isArray(data122)){if(data122.size!==undefined){let data123=data122.size;if(typeof data123!=="string"){const err157={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/4/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err157];}else{vErrors.push(err157);}errors++;}if(!(data123==="small"||data123==="large")){const err158={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/4/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[4].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err158];}else{vErrors.push(err158);}errors++;}}if(data122.breakRow!==undefined){if(typeof data122.breakRow!=="boolean"){const err159={instancePath:instancePath+"/fields/"+i2+"/uiConfig/breakRow",schemaPath:"#/properties/fields/items/anyOf/4/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err159];}else{vErrors.push(err159);}errors++;}}}else{const err160={instancePath:instancePath+"/fields/"+i2+"/uiConfig",schemaPath:"#/properties/fields/items/anyOf/4/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err160];}else{vErrors.push(err160);}errors++;}}if(data14.id!==undefined){if(typeof data14.id!=="string"){const err161={instancePath:instancePath+"/fields/"+i2+"/id",schemaPath:"#/properties/fields/items/anyOf/4/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err161];}else{vErrors.push(err161);}errors++;}}if(data14.name!==undefined){if(typeof data14.name!=="string"){const err162={instancePath:instancePath+"/fields/"+i2+"/name",schemaPath:"#/properties/fields/items/anyOf/4/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err162];}else{vErrors.push(err162);}errors++;}}if(data14.label!==undefined){if(typeof data14.label!=="string"){const err163={instancePath:instancePath+"/fields/"+i2+"/label",schemaPath:"#/properties/fields/items/anyOf/4/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err163];}else{vErrors.push(err163);}errors++;}}if(data14.value!==undefined){if(typeof data14.value!=="string"){const err164={instancePath:instancePath+"/fields/"+i2+"/value",schemaPath:"#/properties/fields/items/anyOf/4/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err164];}else{vErrors.push(err164);}errors++;}}if(data14.isVisible!==undefined){if(typeof data14.isVisible!=="boolean"){const err165={instancePath:instancePath+"/fields/"+i2+"/isVisible",schemaPath:"#/properties/fields/items/anyOf/4/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err165];}else{vErrors.push(err165);}errors++;}}if(data14.isFocused!==undefined){if(typeof data14.isFocused!=="boolean"){const err166={instancePath:instancePath+"/fields/"+i2+"/isFocused",schemaPath:"#/properties/fields/items/anyOf/4/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err166];}else{vErrors.push(err166);}errors++;}}if(data14.errorMessage!==undefined){if(typeof data14.errorMessage!=="string"){const err167={instancePath:instancePath+"/fields/"+i2+"/errorMessage",schemaPath:"#/properties/fields/items/anyOf/4/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err167];}else{vErrors.push(err167);}errors++;}}if(data14.tooltip!==undefined){if(typeof data14.tooltip!=="string"){const err168={instancePath:instancePath+"/fields/"+i2+"/tooltip",schemaPath:"#/properties/fields/items/anyOf/4/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err168];}else{vErrors.push(err168);}errors++;}}if(data14.toolTipType!==undefined){if(typeof data14.toolTipType!=="string"){const err169={instancePath:instancePath+"/fields/"+i2+"/toolTipType",schemaPath:"#/properties/fields/items/anyOf/4/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err169];}else{vErrors.push(err169);}errors++;}}if(data14.required!==undefined){if(typeof data14.required!=="boolean"){const err170={instancePath:instancePath+"/fields/"+i2+"/required",schemaPath:"#/properties/fields/items/anyOf/4/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err170];}else{vErrors.push(err170);}errors++;}}if(data14.disabled!==undefined){if(typeof data14.disabled!=="boolean"){const err171={instancePath:instancePath+"/fields/"+i2+"/disabled",schemaPath:"#/properties/fields/items/anyOf/4/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err171];}else{vErrors.push(err171);}errors++;}}if(data14.labelActions!==undefined){let data136=data14.labelActions;if(Array.isArray(data136)){const len11=data136.length;for(let i11=0;i11<len11;i11++){let data137=data136[i11];if(!(data137&&typeof data137=="object"&&!Array.isArray(data137))){const err172={instancePath:instancePath+"/fields/"+i2+"/labelActions/"+i11,schemaPath:"#/properties/fields/items/anyOf/4/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err172];}else{vErrors.push(err172);}errors++;}}}else{const err173={instancePath:instancePath+"/fields/"+i2+"/labelActions",schemaPath:"#/properties/fields/items/anyOf/4/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err173];}else{vErrors.push(err173);}errors++;}}if(data14.actions!==undefined){let data138=data14.actions;if(Array.isArray(data138)){const len12=data138.length;for(let i12=0;i12<len12;i12++){let data139=data138[i12];if(!(data139&&typeof data139=="object"&&!Array.isArray(data139))){const err174={instancePath:instancePath+"/fields/"+i2+"/actions/"+i12,schemaPath:"#/properties/fields/items/anyOf/4/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err174];}else{vErrors.push(err174);}errors++;}}}else{const err175={instancePath:instancePath+"/fields/"+i2+"/actions",schemaPath:"#/properties/fields/items/anyOf/4/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err175];}else{vErrors.push(err175);}errors++;}}if(data14.textOverflowMode!==undefined){let data140=data14.textOverflowMode;if(typeof data140!=="string"){const err176={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/4/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err176];}else{vErrors.push(err176);}errors++;}if(!(data140==="clip"||data140==="wrap")){const err177={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/4/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[4].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err177];}else{vErrors.push(err177);}errors++;}}if(data14.isRead!==undefined){if(typeof data14.isRead!=="boolean"){const err178={instancePath:instancePath+"/fields/"+i2+"/isRead",schemaPath:"#/properties/fields/items/anyOf/4/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err178];}else{vErrors.push(err178);}errors++;}}if(data14.readonly!==undefined){if(typeof data14.readonly!=="boolean"){const err179={instancePath:instancePath+"/fields/"+i2+"/readonly",schemaPath:"#/properties/fields/items/anyOf/4/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err179];}else{vErrors.push(err179);}errors++;}}if(data14.clientScripts!==undefined){if(!Array.isArray(data14.clientScripts)){const err180={instancePath:instancePath+"/fields/"+i2+"/clientScripts",schemaPath:"#/properties/fields/items/anyOf/4/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err180];}else{vErrors.push(err180);}errors++;}}}else{const err181={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/4/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err181];}else{vErrors.push(err181);}errors++;}var _valid0=_errs266===errors;valid7=valid7||_valid0;if(!valid7){const _errs320=errors;if(data14&&typeof data14=="object"&&!Array.isArray(data14)){if(data14.name===undefined){const err182={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/5/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err182];}else{vErrors.push(err182);}errors++;}if(data14.value===undefined){const err183={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/5/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err183];}else{vErrors.push(err183);}errors++;}if(data14.type!==undefined){let data144=data14.type;const _errs323=errors;let valid49=false;const _errs324=errors;if(data144&&typeof data144=="object"&&!Array.isArray(data144)){if(data144.UIComponentName!==undefined){if(typeof data144.UIComponentName!=="string"){const err184={instancePath:instancePath+"/fields/"+i2+"/type/UIComponentName",schemaPath:"#/properties/fields/items/anyOf/5/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err184];}else{vErrors.push(err184);}errors++;}}}else{const err185={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/5/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err185];}else{vErrors.push(err185);}errors++;}var _valid6=_errs324===errors;valid49=valid49||_valid6;if(!valid49){const _errs328=errors;if(typeof data144!=="string"){const err186={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/5/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err186];}else{vErrors.push(err186);}errors++;}var _valid6=_errs328===errors;valid49=valid49||_valid6;}if(!valid49){const err187={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/5/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err187];}else{vErrors.push(err187);}errors++;}else{errors=_errs323;if(vErrors!==null){if(_errs323){vErrors.length=_errs323;}else{vErrors=null;}}}}if(data14.uiConfig!==undefined){let data146=data14.uiConfig;if(data146&&typeof data146=="object"&&!Array.isArray(data146)){if(data146.size!==undefined){let data147=data146.size;if(typeof data147!=="string"){const err188={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/5/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err188];}else{vErrors.push(err188);}errors++;}if(!(data147==="small"||data147==="large")){const err189={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/5/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[5].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err189];}else{vErrors.push(err189);}errors++;}}if(data146.breakRow!==undefined){if(typeof data146.breakRow!=="boolean"){const err190={instancePath:instancePath+"/fields/"+i2+"/uiConfig/breakRow",schemaPath:"#/properties/fields/items/anyOf/5/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err190];}else{vErrors.push(err190);}errors++;}}}else{const err191={instancePath:instancePath+"/fields/"+i2+"/uiConfig",schemaPath:"#/properties/fields/items/anyOf/5/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err191];}else{vErrors.push(err191);}errors++;}}if(data14.id!==undefined){if(typeof data14.id!=="string"){const err192={instancePath:instancePath+"/fields/"+i2+"/id",schemaPath:"#/properties/fields/items/anyOf/5/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err192];}else{vErrors.push(err192);}errors++;}}if(data14.name!==undefined){if(typeof data14.name!=="string"){const err193={instancePath:instancePath+"/fields/"+i2+"/name",schemaPath:"#/properties/fields/items/anyOf/5/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err193];}else{vErrors.push(err193);}errors++;}}if(data14.label!==undefined){if(typeof data14.label!=="string"){const err194={instancePath:instancePath+"/fields/"+i2+"/label",schemaPath:"#/properties/fields/items/anyOf/5/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err194];}else{vErrors.push(err194);}errors++;}}if(data14.value!==undefined){if(typeof data14.value!=="string"){const err195={instancePath:instancePath+"/fields/"+i2+"/value",schemaPath:"#/properties/fields/items/anyOf/5/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err195];}else{vErrors.push(err195);}errors++;}}if(data14.isVisible!==undefined){if(typeof data14.isVisible!=="boolean"){const err196={instancePath:instancePath+"/fields/"+i2+"/isVisible",schemaPath:"#/properties/fields/items/anyOf/5/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err196];}else{vErrors.push(err196);}errors++;}}if(data14.isFocused!==undefined){if(typeof data14.isFocused!=="boolean"){const err197={instancePath:instancePath+"/fields/"+i2+"/isFocused",schemaPath:"#/properties/fields/items/anyOf/5/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err197];}else{vErrors.push(err197);}errors++;}}if(data14.errorMessage!==undefined){if(typeof data14.errorMessage!=="string"){const err198={instancePath:instancePath+"/fields/"+i2+"/errorMessage",schemaPath:"#/properties/fields/items/anyOf/5/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err198];}else{vErrors.push(err198);}errors++;}}if(data14.tooltip!==undefined){if(typeof data14.tooltip!=="string"){const err199={instancePath:instancePath+"/fields/"+i2+"/tooltip",schemaPath:"#/properties/fields/items/anyOf/5/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err199];}else{vErrors.push(err199);}errors++;}}if(data14.toolTipType!==undefined){if(typeof data14.toolTipType!=="string"){const err200={instancePath:instancePath+"/fields/"+i2+"/toolTipType",schemaPath:"#/properties/fields/items/anyOf/5/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err200];}else{vErrors.push(err200);}errors++;}}if(data14.required!==undefined){if(typeof data14.required!=="boolean"){const err201={instancePath:instancePath+"/fields/"+i2+"/required",schemaPath:"#/properties/fields/items/anyOf/5/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err201];}else{vErrors.push(err201);}errors++;}}if(data14.disabled!==undefined){if(typeof data14.disabled!=="boolean"){const err202={instancePath:instancePath+"/fields/"+i2+"/disabled",schemaPath:"#/properties/fields/items/anyOf/5/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err202];}else{vErrors.push(err202);}errors++;}}if(data14.labelActions!==undefined){let data160=data14.labelActions;if(Array.isArray(data160)){const len13=data160.length;for(let i13=0;i13<len13;i13++){let data161=data160[i13];if(!(data161&&typeof data161=="object"&&!Array.isArray(data161))){const err203={instancePath:instancePath+"/fields/"+i2+"/labelActions/"+i13,schemaPath:"#/properties/fields/items/anyOf/5/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err203];}else{vErrors.push(err203);}errors++;}}}else{const err204={instancePath:instancePath+"/fields/"+i2+"/labelActions",schemaPath:"#/properties/fields/items/anyOf/5/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err204];}else{vErrors.push(err204);}errors++;}}if(data14.actions!==undefined){let data162=data14.actions;if(Array.isArray(data162)){const len14=data162.length;for(let i14=0;i14<len14;i14++){let data163=data162[i14];if(!(data163&&typeof data163=="object"&&!Array.isArray(data163))){const err205={instancePath:instancePath+"/fields/"+i2+"/actions/"+i14,schemaPath:"#/properties/fields/items/anyOf/5/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err205];}else{vErrors.push(err205);}errors++;}}}else{const err206={instancePath:instancePath+"/fields/"+i2+"/actions",schemaPath:"#/properties/fields/items/anyOf/5/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err206];}else{vErrors.push(err206);}errors++;}}if(data14.textOverflowMode!==undefined){let data164=data14.textOverflowMode;if(typeof data164!=="string"){const err207={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/5/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err207];}else{vErrors.push(err207);}errors++;}if(!(data164==="clip"||data164==="wrap")){const err208={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/5/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[5].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err208];}else{vErrors.push(err208);}errors++;}}if(data14.isRead!==undefined){if(typeof data14.isRead!=="boolean"){const err209={instancePath:instancePath+"/fields/"+i2+"/isRead",schemaPath:"#/properties/fields/items/anyOf/5/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err209];}else{vErrors.push(err209);}errors++;}}if(data14.readonly!==undefined){if(typeof data14.readonly!=="boolean"){const err210={instancePath:instancePath+"/fields/"+i2+"/readonly",schemaPath:"#/properties/fields/items/anyOf/5/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err210];}else{vErrors.push(err210);}errors++;}}if(data14.clientScripts!==undefined){if(!Array.isArray(data14.clientScripts)){const err211={instancePath:instancePath+"/fields/"+i2+"/clientScripts",schemaPath:"#/properties/fields/items/anyOf/5/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err211];}else{vErrors.push(err211);}errors++;}}}else{const err212={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/5/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err212];}else{vErrors.push(err212);}errors++;}var _valid0=_errs320===errors;valid7=valid7||_valid0;if(!valid7){const _errs374=errors;if(data14&&typeof data14=="object"&&!Array.isArray(data14)){if(data14.name===undefined){const err213={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/6/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err213];}else{vErrors.push(err213);}errors++;}if(data14.value===undefined){const err214={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/6/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err214];}else{vErrors.push(err214);}errors++;}if(data14.type!==undefined){let data168=data14.type;const _errs377=errors;let valid57=false;const _errs378=errors;if(data168&&typeof data168=="object"&&!Array.isArray(data168)){if(data168.UIComponentName!==undefined){if(typeof data168.UIComponentName!=="string"){const err215={instancePath:instancePath+"/fields/"+i2+"/type/UIComponentName",schemaPath:"#/properties/fields/items/anyOf/6/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err215];}else{vErrors.push(err215);}errors++;}}}else{const err216={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/6/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err216];}else{vErrors.push(err216);}errors++;}var _valid7=_errs378===errors;valid57=valid57||_valid7;if(!valid57){const _errs382=errors;if(typeof data168!=="string"){const err217={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/6/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err217];}else{vErrors.push(err217);}errors++;}var _valid7=_errs382===errors;valid57=valid57||_valid7;}if(!valid57){const err218={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/6/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err218];}else{vErrors.push(err218);}errors++;}else{errors=_errs377;if(vErrors!==null){if(_errs377){vErrors.length=_errs377;}else{vErrors=null;}}}}if(data14.uiConfig!==undefined){let data170=data14.uiConfig;if(data170&&typeof data170=="object"&&!Array.isArray(data170)){if(data170.size!==undefined){let data171=data170.size;if(typeof data171!=="string"){const err219={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/6/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err219];}else{vErrors.push(err219);}errors++;}if(!(data171==="small"||data171==="large")){const err220={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/6/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[6].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err220];}else{vErrors.push(err220);}errors++;}}if(data170.breakRow!==undefined){if(typeof data170.breakRow!=="boolean"){const err221={instancePath:instancePath+"/fields/"+i2+"/uiConfig/breakRow",schemaPath:"#/properties/fields/items/anyOf/6/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err221];}else{vErrors.push(err221);}errors++;}}}else{const err222={instancePath:instancePath+"/fields/"+i2+"/uiConfig",schemaPath:"#/properties/fields/items/anyOf/6/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err222];}else{vErrors.push(err222);}errors++;}}if(data14.id!==undefined){if(typeof data14.id!=="string"){const err223={instancePath:instancePath+"/fields/"+i2+"/id",schemaPath:"#/properties/fields/items/anyOf/6/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err223];}else{vErrors.push(err223);}errors++;}}if(data14.name!==undefined){if(typeof data14.name!=="string"){const err224={instancePath:instancePath+"/fields/"+i2+"/name",schemaPath:"#/properties/fields/items/anyOf/6/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err224];}else{vErrors.push(err224);}errors++;}}if(data14.label!==undefined){if(typeof data14.label!=="string"){const err225={instancePath:instancePath+"/fields/"+i2+"/label",schemaPath:"#/properties/fields/items/anyOf/6/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err225];}else{vErrors.push(err225);}errors++;}}if(data14.value!==undefined){if(typeof data14.value!=="string"){const err226={instancePath:instancePath+"/fields/"+i2+"/value",schemaPath:"#/properties/fields/items/anyOf/6/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err226];}else{vErrors.push(err226);}errors++;}}if(data14.isVisible!==undefined){if(typeof data14.isVisible!=="boolean"){const err227={instancePath:instancePath+"/fields/"+i2+"/isVisible",schemaPath:"#/properties/fields/items/anyOf/6/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err227];}else{vErrors.push(err227);}errors++;}}if(data14.isFocused!==undefined){if(typeof data14.isFocused!=="boolean"){const err228={instancePath:instancePath+"/fields/"+i2+"/isFocused",schemaPath:"#/properties/fields/items/anyOf/6/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err228];}else{vErrors.push(err228);}errors++;}}if(data14.errorMessage!==undefined){if(typeof data14.errorMessage!=="string"){const err229={instancePath:instancePath+"/fields/"+i2+"/errorMessage",schemaPath:"#/properties/fields/items/anyOf/6/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err229];}else{vErrors.push(err229);}errors++;}}if(data14.tooltip!==undefined){if(typeof data14.tooltip!=="string"){const err230={instancePath:instancePath+"/fields/"+i2+"/tooltip",schemaPath:"#/properties/fields/items/anyOf/6/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err230];}else{vErrors.push(err230);}errors++;}}if(data14.toolTipType!==undefined){if(typeof data14.toolTipType!=="string"){const err231={instancePath:instancePath+"/fields/"+i2+"/toolTipType",schemaPath:"#/properties/fields/items/anyOf/6/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err231];}else{vErrors.push(err231);}errors++;}}if(data14.required!==undefined){if(typeof data14.required!=="boolean"){const err232={instancePath:instancePath+"/fields/"+i2+"/required",schemaPath:"#/properties/fields/items/anyOf/6/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err232];}else{vErrors.push(err232);}errors++;}}if(data14.disabled!==undefined){if(typeof data14.disabled!=="boolean"){const err233={instancePath:instancePath+"/fields/"+i2+"/disabled",schemaPath:"#/properties/fields/items/anyOf/6/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err233];}else{vErrors.push(err233);}errors++;}}if(data14.labelActions!==undefined){let data184=data14.labelActions;if(Array.isArray(data184)){const len15=data184.length;for(let i15=0;i15<len15;i15++){let data185=data184[i15];if(!(data185&&typeof data185=="object"&&!Array.isArray(data185))){const err234={instancePath:instancePath+"/fields/"+i2+"/labelActions/"+i15,schemaPath:"#/properties/fields/items/anyOf/6/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err234];}else{vErrors.push(err234);}errors++;}}}else{const err235={instancePath:instancePath+"/fields/"+i2+"/labelActions",schemaPath:"#/properties/fields/items/anyOf/6/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err235];}else{vErrors.push(err235);}errors++;}}if(data14.actions!==undefined){let data186=data14.actions;if(Array.isArray(data186)){const len16=data186.length;for(let i16=0;i16<len16;i16++){let data187=data186[i16];if(!(data187&&typeof data187=="object"&&!Array.isArray(data187))){const err236={instancePath:instancePath+"/fields/"+i2+"/actions/"+i16,schemaPath:"#/properties/fields/items/anyOf/6/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err236];}else{vErrors.push(err236);}errors++;}}}else{const err237={instancePath:instancePath+"/fields/"+i2+"/actions",schemaPath:"#/properties/fields/items/anyOf/6/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err237];}else{vErrors.push(err237);}errors++;}}if(data14.textOverflowMode!==undefined){let data188=data14.textOverflowMode;if(typeof data188!=="string"){const err238={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/6/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err238];}else{vErrors.push(err238);}errors++;}if(!(data188==="clip"||data188==="wrap")){const err239={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/6/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[6].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err239];}else{vErrors.push(err239);}errors++;}}if(data14.isRead!==undefined){if(typeof data14.isRead!=="boolean"){const err240={instancePath:instancePath+"/fields/"+i2+"/isRead",schemaPath:"#/properties/fields/items/anyOf/6/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err240];}else{vErrors.push(err240);}errors++;}}if(data14.readonly!==undefined){if(typeof data14.readonly!=="boolean"){const err241={instancePath:instancePath+"/fields/"+i2+"/readonly",schemaPath:"#/properties/fields/items/anyOf/6/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err241];}else{vErrors.push(err241);}errors++;}}if(data14.clientScripts!==undefined){if(!Array.isArray(data14.clientScripts)){const err242={instancePath:instancePath+"/fields/"+i2+"/clientScripts",schemaPath:"#/properties/fields/items/anyOf/6/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err242];}else{vErrors.push(err242);}errors++;}}if(data14.placeholder!==undefined){if(typeof data14.placeholder!=="string"){const err243={instancePath:instancePath+"/fields/"+i2+"/placeholder",schemaPath:"#/properties/fields/items/anyOf/6/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err243];}else{vErrors.push(err243);}errors++;}}if(data14.maxLength!==undefined){if(!(typeof data14.maxLength=="number")){const err244={instancePath:instancePath+"/fields/"+i2+"/maxLength",schemaPath:"#/properties/fields/items/anyOf/6/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err244];}else{vErrors.push(err244);}errors++;}}if(data14.ePHI!==undefined){if(typeof data14.ePHI!=="boolean"){const err245={instancePath:instancePath+"/fields/"+i2+"/ePHI",schemaPath:"#/properties/fields/items/anyOf/6/properties/ePHI/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err245];}else{vErrors.push(err245);}errors++;}}}else{const err246={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/6/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err246];}else{vErrors.push(err246);}errors++;}var _valid0=_errs374===errors;valid7=valid7||_valid0;if(!valid7){const _errs434=errors;if(data14&&typeof data14=="object"&&!Array.isArray(data14)){if(data14.name===undefined){const err247={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/7/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err247];}else{vErrors.push(err247);}errors++;}if(data14.value===undefined){const err248={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/7/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err248];}else{vErrors.push(err248);}errors++;}if(data14.type!==undefined){let data195=data14.type;const _errs437=errors;let valid65=false;const _errs438=errors;if(data195&&typeof data195=="object"&&!Array.isArray(data195)){if(data195.UIComponentName!==undefined){if(typeof data195.UIComponentName!=="string"){const err249={instancePath:instancePath+"/fields/"+i2+"/type/UIComponentName",schemaPath:"#/properties/fields/items/anyOf/7/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err249];}else{vErrors.push(err249);}errors++;}}}else{const err250={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/7/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err250];}else{vErrors.push(err250);}errors++;}var _valid8=_errs438===errors;valid65=valid65||_valid8;if(!valid65){const _errs442=errors;if(typeof data195!=="string"){const err251={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/7/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err251];}else{vErrors.push(err251);}errors++;}var _valid8=_errs442===errors;valid65=valid65||_valid8;}if(!valid65){const err252={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/7/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err252];}else{vErrors.push(err252);}errors++;}else{errors=_errs437;if(vErrors!==null){if(_errs437){vErrors.length=_errs437;}else{vErrors=null;}}}}if(data14.uiConfig!==undefined){let data197=data14.uiConfig;if(data197&&typeof data197=="object"&&!Array.isArray(data197)){if(data197.size!==undefined){let data198=data197.size;if(typeof data198!=="string"){const err253={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/7/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err253];}else{vErrors.push(err253);}errors++;}if(!(data198==="small"||data198==="large")){const err254={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/7/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[7].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err254];}else{vErrors.push(err254);}errors++;}}if(data197.breakRow!==undefined){if(typeof data197.breakRow!=="boolean"){const err255={instancePath:instancePath+"/fields/"+i2+"/uiConfig/breakRow",schemaPath:"#/properties/fields/items/anyOf/7/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err255];}else{vErrors.push(err255);}errors++;}}}else{const err256={instancePath:instancePath+"/fields/"+i2+"/uiConfig",schemaPath:"#/properties/fields/items/anyOf/7/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err256];}else{vErrors.push(err256);}errors++;}}if(data14.id!==undefined){if(typeof data14.id!=="string"){const err257={instancePath:instancePath+"/fields/"+i2+"/id",schemaPath:"#/properties/fields/items/anyOf/7/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err257];}else{vErrors.push(err257);}errors++;}}if(data14.name!==undefined){if(typeof data14.name!=="string"){const err258={instancePath:instancePath+"/fields/"+i2+"/name",schemaPath:"#/properties/fields/items/anyOf/7/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err258];}else{vErrors.push(err258);}errors++;}}if(data14.label!==undefined){if(typeof data14.label!=="string"){const err259={instancePath:instancePath+"/fields/"+i2+"/label",schemaPath:"#/properties/fields/items/anyOf/7/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err259];}else{vErrors.push(err259);}errors++;}}if(data14.value!==undefined){if(typeof data14.value!=="string"){const err260={instancePath:instancePath+"/fields/"+i2+"/value",schemaPath:"#/properties/fields/items/anyOf/7/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err260];}else{vErrors.push(err260);}errors++;}}if(data14.isVisible!==undefined){if(typeof data14.isVisible!=="boolean"){const err261={instancePath:instancePath+"/fields/"+i2+"/isVisible",schemaPath:"#/properties/fields/items/anyOf/7/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err261];}else{vErrors.push(err261);}errors++;}}if(data14.isFocused!==undefined){if(typeof data14.isFocused!=="boolean"){const err262={instancePath:instancePath+"/fields/"+i2+"/isFocused",schemaPath:"#/properties/fields/items/anyOf/7/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err262];}else{vErrors.push(err262);}errors++;}}if(data14.errorMessage!==undefined){if(typeof data14.errorMessage!=="string"){const err263={instancePath:instancePath+"/fields/"+i2+"/errorMessage",schemaPath:"#/properties/fields/items/anyOf/7/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err263];}else{vErrors.push(err263);}errors++;}}if(data14.tooltip!==undefined){if(typeof data14.tooltip!=="string"){const err264={instancePath:instancePath+"/fields/"+i2+"/tooltip",schemaPath:"#/properties/fields/items/anyOf/7/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err264];}else{vErrors.push(err264);}errors++;}}if(data14.toolTipType!==undefined){if(typeof data14.toolTipType!=="string"){const err265={instancePath:instancePath+"/fields/"+i2+"/toolTipType",schemaPath:"#/properties/fields/items/anyOf/7/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err265];}else{vErrors.push(err265);}errors++;}}if(data14.required!==undefined){if(typeof data14.required!=="boolean"){const err266={instancePath:instancePath+"/fields/"+i2+"/required",schemaPath:"#/properties/fields/items/anyOf/7/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err266];}else{vErrors.push(err266);}errors++;}}if(data14.disabled!==undefined){if(typeof data14.disabled!=="boolean"){const err267={instancePath:instancePath+"/fields/"+i2+"/disabled",schemaPath:"#/properties/fields/items/anyOf/7/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err267];}else{vErrors.push(err267);}errors++;}}if(data14.labelActions!==undefined){let data211=data14.labelActions;if(Array.isArray(data211)){const len17=data211.length;for(let i17=0;i17<len17;i17++){let data212=data211[i17];if(!(data212&&typeof data212=="object"&&!Array.isArray(data212))){const err268={instancePath:instancePath+"/fields/"+i2+"/labelActions/"+i17,schemaPath:"#/properties/fields/items/anyOf/7/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err268];}else{vErrors.push(err268);}errors++;}}}else{const err269={instancePath:instancePath+"/fields/"+i2+"/labelActions",schemaPath:"#/properties/fields/items/anyOf/7/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err269];}else{vErrors.push(err269);}errors++;}}if(data14.actions!==undefined){let data213=data14.actions;if(Array.isArray(data213)){const len18=data213.length;for(let i18=0;i18<len18;i18++){let data214=data213[i18];if(!(data214&&typeof data214=="object"&&!Array.isArray(data214))){const err270={instancePath:instancePath+"/fields/"+i2+"/actions/"+i18,schemaPath:"#/properties/fields/items/anyOf/7/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err270];}else{vErrors.push(err270);}errors++;}}}else{const err271={instancePath:instancePath+"/fields/"+i2+"/actions",schemaPath:"#/properties/fields/items/anyOf/7/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err271];}else{vErrors.push(err271);}errors++;}}if(data14.textOverflowMode!==undefined){let data215=data14.textOverflowMode;if(typeof data215!=="string"){const err272={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/7/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err272];}else{vErrors.push(err272);}errors++;}if(!(data215==="clip"||data215==="wrap")){const err273={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/7/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[7].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err273];}else{vErrors.push(err273);}errors++;}}if(data14.isRead!==undefined){if(typeof data14.isRead!=="boolean"){const err274={instancePath:instancePath+"/fields/"+i2+"/isRead",schemaPath:"#/properties/fields/items/anyOf/7/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err274];}else{vErrors.push(err274);}errors++;}}if(data14.readonly!==undefined){if(typeof data14.readonly!=="boolean"){const err275={instancePath:instancePath+"/fields/"+i2+"/readonly",schemaPath:"#/properties/fields/items/anyOf/7/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err275];}else{vErrors.push(err275);}errors++;}}if(data14.clientScripts!==undefined){if(!Array.isArray(data14.clientScripts)){const err276={instancePath:instancePath+"/fields/"+i2+"/clientScripts",schemaPath:"#/properties/fields/items/anyOf/7/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err276];}else{vErrors.push(err276);}errors++;}}if(data14.maxLength!==undefined){if(!(typeof data14.maxLength=="number")){const err277={instancePath:instancePath+"/fields/"+i2+"/maxLength",schemaPath:"#/properties/fields/items/anyOf/7/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err277];}else{vErrors.push(err277);}errors++;}}if(data14.placeholder!==undefined){if(typeof data14.placeholder!=="string"){const err278={instancePath:instancePath+"/fields/"+i2+"/placeholder",schemaPath:"#/properties/fields/items/anyOf/7/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err278];}else{vErrors.push(err278);}errors++;}}}else{const err279={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/7/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err279];}else{vErrors.push(err279);}errors++;}var _valid0=_errs434===errors;valid7=valid7||_valid0;if(!valid7){const _errs492=errors;if(data14&&typeof data14=="object"&&!Array.isArray(data14)){if(data14.name===undefined){const err280={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/8/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err280];}else{vErrors.push(err280);}errors++;}if(data14.type!==undefined){let data221=data14.type;const _errs495=errors;let valid73=false;const _errs496=errors;if(data221&&typeof data221=="object"&&!Array.isArray(data221)){if(data221.UIComponentName!==undefined){if(typeof data221.UIComponentName!=="string"){const err281={instancePath:instancePath+"/fields/"+i2+"/type/UIComponentName",schemaPath:"#/properties/fields/items/anyOf/8/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err281];}else{vErrors.push(err281);}errors++;}}}else{const err282={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/8/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err282];}else{vErrors.push(err282);}errors++;}var _valid9=_errs496===errors;valid73=valid73||_valid9;if(!valid73){const _errs500=errors;if(typeof data221!=="string"){const err283={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/8/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err283];}else{vErrors.push(err283);}errors++;}var _valid9=_errs500===errors;valid73=valid73||_valid9;}if(!valid73){const err284={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/8/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err284];}else{vErrors.push(err284);}errors++;}else{errors=_errs495;if(vErrors!==null){if(_errs495){vErrors.length=_errs495;}else{vErrors=null;}}}}if(data14.uiConfig!==undefined){let data223=data14.uiConfig;if(data223&&typeof data223=="object"&&!Array.isArray(data223)){if(data223.size!==undefined){let data224=data223.size;if(typeof data224!=="string"){const err285={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/8/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err285];}else{vErrors.push(err285);}errors++;}if(!(data224==="small"||data224==="large")){const err286={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/8/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[8].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err286];}else{vErrors.push(err286);}errors++;}}if(data223.breakRow!==undefined){if(typeof data223.breakRow!=="boolean"){const err287={instancePath:instancePath+"/fields/"+i2+"/uiConfig/breakRow",schemaPath:"#/properties/fields/items/anyOf/8/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err287];}else{vErrors.push(err287);}errors++;}}}else{const err288={instancePath:instancePath+"/fields/"+i2+"/uiConfig",schemaPath:"#/properties/fields/items/anyOf/8/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err288];}else{vErrors.push(err288);}errors++;}}if(data14.id!==undefined){if(typeof data14.id!=="string"){const err289={instancePath:instancePath+"/fields/"+i2+"/id",schemaPath:"#/properties/fields/items/anyOf/8/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err289];}else{vErrors.push(err289);}errors++;}}if(data14.name!==undefined){if(typeof data14.name!=="string"){const err290={instancePath:instancePath+"/fields/"+i2+"/name",schemaPath:"#/properties/fields/items/anyOf/8/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err290];}else{vErrors.push(err290);}errors++;}}if(data14.label!==undefined){if(typeof data14.label!=="string"){const err291={instancePath:instancePath+"/fields/"+i2+"/label",schemaPath:"#/properties/fields/items/anyOf/8/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err291];}else{vErrors.push(err291);}errors++;}}if(data14.isVisible!==undefined){if(typeof data14.isVisible!=="boolean"){const err292={instancePath:instancePath+"/fields/"+i2+"/isVisible",schemaPath:"#/properties/fields/items/anyOf/8/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err292];}else{vErrors.push(err292);}errors++;}}if(data14.isFocused!==undefined){if(typeof data14.isFocused!=="boolean"){const err293={instancePath:instancePath+"/fields/"+i2+"/isFocused",schemaPath:"#/properties/fields/items/anyOf/8/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err293];}else{vErrors.push(err293);}errors++;}}if(data14.errorMessage!==undefined){if(typeof data14.errorMessage!=="string"){const err294={instancePath:instancePath+"/fields/"+i2+"/errorMessage",schemaPath:"#/properties/fields/items/anyOf/8/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err294];}else{vErrors.push(err294);}errors++;}}if(data14.tooltip!==undefined){if(typeof data14.tooltip!=="string"){const err295={instancePath:instancePath+"/fields/"+i2+"/tooltip",schemaPath:"#/properties/fields/items/anyOf/8/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err295];}else{vErrors.push(err295);}errors++;}}if(data14.toolTipType!==undefined){if(typeof data14.toolTipType!=="string"){const err296={instancePath:instancePath+"/fields/"+i2+"/toolTipType",schemaPath:"#/properties/fields/items/anyOf/8/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err296];}else{vErrors.push(err296);}errors++;}}if(data14.required!==undefined){if(typeof data14.required!=="boolean"){const err297={instancePath:instancePath+"/fields/"+i2+"/required",schemaPath:"#/properties/fields/items/anyOf/8/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err297];}else{vErrors.push(err297);}errors++;}}if(data14.disabled!==undefined){if(typeof data14.disabled!=="boolean"){const err298={instancePath:instancePath+"/fields/"+i2+"/disabled",schemaPath:"#/properties/fields/items/anyOf/8/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err298];}else{vErrors.push(err298);}errors++;}}if(data14.labelActions!==undefined){let data236=data14.labelActions;if(Array.isArray(data236)){const len19=data236.length;for(let i19=0;i19<len19;i19++){let data237=data236[i19];if(!(data237&&typeof data237=="object"&&!Array.isArray(data237))){const err299={instancePath:instancePath+"/fields/"+i2+"/labelActions/"+i19,schemaPath:"#/properties/fields/items/anyOf/8/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err299];}else{vErrors.push(err299);}errors++;}}}else{const err300={instancePath:instancePath+"/fields/"+i2+"/labelActions",schemaPath:"#/properties/fields/items/anyOf/8/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err300];}else{vErrors.push(err300);}errors++;}}if(data14.actions!==undefined){let data238=data14.actions;if(Array.isArray(data238)){const len20=data238.length;for(let i20=0;i20<len20;i20++){let data239=data238[i20];if(!(data239&&typeof data239=="object"&&!Array.isArray(data239))){const err301={instancePath:instancePath+"/fields/"+i2+"/actions/"+i20,schemaPath:"#/properties/fields/items/anyOf/8/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err301];}else{vErrors.push(err301);}errors++;}}}else{const err302={instancePath:instancePath+"/fields/"+i2+"/actions",schemaPath:"#/properties/fields/items/anyOf/8/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err302];}else{vErrors.push(err302);}errors++;}}if(data14.textOverflowMode!==undefined){let data240=data14.textOverflowMode;if(typeof data240!=="string"){const err303={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/8/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err303];}else{vErrors.push(err303);}errors++;}if(!(data240==="clip"||data240==="wrap")){const err304={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/8/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[8].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err304];}else{vErrors.push(err304);}errors++;}}if(data14.isRead!==undefined){if(typeof data14.isRead!=="boolean"){const err305={instancePath:instancePath+"/fields/"+i2+"/isRead",schemaPath:"#/properties/fields/items/anyOf/8/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err305];}else{vErrors.push(err305);}errors++;}}if(data14.readonly!==undefined){if(typeof data14.readonly!=="boolean"){const err306={instancePath:instancePath+"/fields/"+i2+"/readonly",schemaPath:"#/properties/fields/items/anyOf/8/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err306];}else{vErrors.push(err306);}errors++;}}if(data14.clientScripts!==undefined){if(!Array.isArray(data14.clientScripts)){const err307={instancePath:instancePath+"/fields/"+i2+"/clientScripts",schemaPath:"#/properties/fields/items/anyOf/8/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err307];}else{vErrors.push(err307);}errors++;}}if(data14.lookup!==undefined){let data244=data14.lookup;if(!(data244&&typeof data244=="object"&&!Array.isArray(data244))){const err308={instancePath:instancePath+"/fields/"+i2+"/lookup",schemaPath:"#/properties/fields/items/anyOf/8/properties/lookup/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err308];}else{vErrors.push(err308);}errors++;}}if(data14.maxLength!==undefined){if(!(typeof data14.maxLength=="number")){const err309={instancePath:instancePath+"/fields/"+i2+"/maxLength",schemaPath:"#/properties/fields/items/anyOf/8/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err309];}else{vErrors.push(err309);}errors++;}}}else{const err310={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/8/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err310];}else{vErrors.push(err310);}errors++;}var _valid0=_errs492===errors;valid7=valid7||_valid0;if(!valid7){const _errs548=errors;if(data14&&typeof data14=="object"&&!Array.isArray(data14)){if(data14.name===undefined){const err311={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/9/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err311];}else{vErrors.push(err311);}errors++;}if(data14.value===undefined){const err312={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/9/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err312];}else{vErrors.push(err312);}errors++;}if(data14.type!==undefined){let data246=data14.type;const _errs551=errors;let valid81=false;const _errs552=errors;if(data246&&typeof data246=="object"&&!Array.isArray(data246)){if(data246.UIComponentName!==undefined){if(typeof data246.UIComponentName!=="string"){const err313={instancePath:instancePath+"/fields/"+i2+"/type/UIComponentName",schemaPath:"#/properties/fields/items/anyOf/9/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err313];}else{vErrors.push(err313);}errors++;}}}else{const err314={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/9/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err314];}else{vErrors.push(err314);}errors++;}var _valid10=_errs552===errors;valid81=valid81||_valid10;if(!valid81){const _errs556=errors;if(typeof data246!=="string"){const err315={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/9/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err315];}else{vErrors.push(err315);}errors++;}var _valid10=_errs556===errors;valid81=valid81||_valid10;}if(!valid81){const err316={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/9/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err316];}else{vErrors.push(err316);}errors++;}else{errors=_errs551;if(vErrors!==null){if(_errs551){vErrors.length=_errs551;}else{vErrors=null;}}}}if(data14.uiConfig!==undefined){let data248=data14.uiConfig;if(data248&&typeof data248=="object"&&!Array.isArray(data248)){if(data248.size!==undefined){let data249=data248.size;if(typeof data249!=="string"){const err317={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/9/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err317];}else{vErrors.push(err317);}errors++;}if(!(data249==="small"||data249==="large")){const err318={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/9/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[9].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err318];}else{vErrors.push(err318);}errors++;}}if(data248.breakRow!==undefined){if(typeof data248.breakRow!=="boolean"){const err319={instancePath:instancePath+"/fields/"+i2+"/uiConfig/breakRow",schemaPath:"#/properties/fields/items/anyOf/9/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err319];}else{vErrors.push(err319);}errors++;}}}else{const err320={instancePath:instancePath+"/fields/"+i2+"/uiConfig",schemaPath:"#/properties/fields/items/anyOf/9/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err320];}else{vErrors.push(err320);}errors++;}}if(data14.id!==undefined){if(typeof data14.id!=="string"){const err321={instancePath:instancePath+"/fields/"+i2+"/id",schemaPath:"#/properties/fields/items/anyOf/9/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err321];}else{vErrors.push(err321);}errors++;}}if(data14.name!==undefined){if(typeof data14.name!=="string"){const err322={instancePath:instancePath+"/fields/"+i2+"/name",schemaPath:"#/properties/fields/items/anyOf/9/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err322];}else{vErrors.push(err322);}errors++;}}if(data14.label!==undefined){if(typeof data14.label!=="string"){const err323={instancePath:instancePath+"/fields/"+i2+"/label",schemaPath:"#/properties/fields/items/anyOf/9/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err323];}else{vErrors.push(err323);}errors++;}}if(data14.value!==undefined){if(!Array.isArray(data14.value)){const err324={instancePath:instancePath+"/fields/"+i2+"/value",schemaPath:"#/properties/fields/items/anyOf/9/properties/value/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err324];}else{vErrors.push(err324);}errors++;}}if(data14.isVisible!==undefined){if(typeof data14.isVisible!=="boolean"){const err325={instancePath:instancePath+"/fields/"+i2+"/isVisible",schemaPath:"#/properties/fields/items/anyOf/9/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err325];}else{vErrors.push(err325);}errors++;}}if(data14.isFocused!==undefined){if(typeof data14.isFocused!=="boolean"){const err326={instancePath:instancePath+"/fields/"+i2+"/isFocused",schemaPath:"#/properties/fields/items/anyOf/9/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err326];}else{vErrors.push(err326);}errors++;}}if(data14.errorMessage!==undefined){if(typeof data14.errorMessage!=="string"){const err327={instancePath:instancePath+"/fields/"+i2+"/errorMessage",schemaPath:"#/properties/fields/items/anyOf/9/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err327];}else{vErrors.push(err327);}errors++;}}if(data14.tooltip!==undefined){if(typeof data14.tooltip!=="string"){const err328={instancePath:instancePath+"/fields/"+i2+"/tooltip",schemaPath:"#/properties/fields/items/anyOf/9/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err328];}else{vErrors.push(err328);}errors++;}}if(data14.toolTipType!==undefined){if(typeof data14.toolTipType!=="string"){const err329={instancePath:instancePath+"/fields/"+i2+"/toolTipType",schemaPath:"#/properties/fields/items/anyOf/9/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err329];}else{vErrors.push(err329);}errors++;}}if(data14.required!==undefined){if(typeof data14.required!=="boolean"){const err330={instancePath:instancePath+"/fields/"+i2+"/required",schemaPath:"#/properties/fields/items/anyOf/9/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err330];}else{vErrors.push(err330);}errors++;}}if(data14.disabled!==undefined){if(typeof data14.disabled!=="boolean"){const err331={instancePath:instancePath+"/fields/"+i2+"/disabled",schemaPath:"#/properties/fields/items/anyOf/9/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err331];}else{vErrors.push(err331);}errors++;}}if(data14.labelActions!==undefined){let data262=data14.labelActions;if(Array.isArray(data262)){const len21=data262.length;for(let i21=0;i21<len21;i21++){let data263=data262[i21];if(!(data263&&typeof data263=="object"&&!Array.isArray(data263))){const err332={instancePath:instancePath+"/fields/"+i2+"/labelActions/"+i21,schemaPath:"#/properties/fields/items/anyOf/9/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err332];}else{vErrors.push(err332);}errors++;}}}else{const err333={instancePath:instancePath+"/fields/"+i2+"/labelActions",schemaPath:"#/properties/fields/items/anyOf/9/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err333];}else{vErrors.push(err333);}errors++;}}if(data14.actions!==undefined){let data264=data14.actions;if(Array.isArray(data264)){const len22=data264.length;for(let i22=0;i22<len22;i22++){let data265=data264[i22];if(!(data265&&typeof data265=="object"&&!Array.isArray(data265))){const err334={instancePath:instancePath+"/fields/"+i2+"/actions/"+i22,schemaPath:"#/properties/fields/items/anyOf/9/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err334];}else{vErrors.push(err334);}errors++;}}}else{const err335={instancePath:instancePath+"/fields/"+i2+"/actions",schemaPath:"#/properties/fields/items/anyOf/9/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err335];}else{vErrors.push(err335);}errors++;}}if(data14.textOverflowMode!==undefined){let data266=data14.textOverflowMode;if(typeof data266!=="string"){const err336={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/9/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err336];}else{vErrors.push(err336);}errors++;}if(!(data266==="clip"||data266==="wrap")){const err337={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/9/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[9].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err337];}else{vErrors.push(err337);}errors++;}}if(data14.isRead!==undefined){if(typeof data14.isRead!=="boolean"){const err338={instancePath:instancePath+"/fields/"+i2+"/isRead",schemaPath:"#/properties/fields/items/anyOf/9/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err338];}else{vErrors.push(err338);}errors++;}}if(data14.readonly!==undefined){if(typeof data14.readonly!=="boolean"){const err339={instancePath:instancePath+"/fields/"+i2+"/readonly",schemaPath:"#/properties/fields/items/anyOf/9/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err339];}else{vErrors.push(err339);}errors++;}}if(data14.clientScripts!==undefined){if(!Array.isArray(data14.clientScripts)){const err340={instancePath:instancePath+"/fields/"+i2+"/clientScripts",schemaPath:"#/properties/fields/items/anyOf/9/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err340];}else{vErrors.push(err340);}errors++;}}if(data14.subType!==undefined){let data270=data14.subType;if(typeof data270!=="string"){const err341={instancePath:instancePath+"/fields/"+i2+"/subType",schemaPath:"#/properties/fields/items/anyOf/9/properties/subType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err341];}else{vErrors.push(err341);}errors++;}if(!(data270==="plain"||data270==="colored"||data270==="Plain"||data270==="ColorCoded")){const err342={instancePath:instancePath+"/fields/"+i2+"/subType",schemaPath:"#/properties/fields/items/anyOf/9/properties/subType/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[9].properties.subType.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err342];}else{vErrors.push(err342);}errors++;}}if(data14.placeholder!==undefined){if(typeof data14.placeholder!=="string"){const err343={instancePath:instancePath+"/fields/"+i2+"/placeholder",schemaPath:"#/properties/fields/items/anyOf/9/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err343];}else{vErrors.push(err343);}errors++;}}if(data14.options!==undefined){let data272=data14.options;if(Array.isArray(data272)){const len23=data272.length;for(let i23=0;i23<len23;i23++){let data273=data272[i23];if(data273&&typeof data273=="object"&&!Array.isArray(data273)){if(data273.value===undefined){const err344={instancePath:instancePath+"/fields/"+i2+"/options/"+i23,schemaPath:"#/properties/fields/items/anyOf/9/properties/options/items/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err344];}else{vErrors.push(err344);}errors++;}if(data273.value!==undefined){if(typeof data273.value!=="string"){const err345={instancePath:instancePath+"/fields/"+i2+"/options/"+i23+"/value",schemaPath:"#/properties/fields/items/anyOf/9/properties/options/items/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err345];}else{vErrors.push(err345);}errors++;}}if(data273.optionActions!==undefined){let data275=data273.optionActions;if(Array.isArray(data275)){const len24=data275.length;for(let i24=0;i24<len24;i24++){let data276=data275[i24];if(!(data276&&typeof data276=="object"&&!Array.isArray(data276))){const err346={instancePath:instancePath+"/fields/"+i2+"/options/"+i23+"/optionActions/"+i24,schemaPath:"#/properties/fields/items/anyOf/9/properties/options/items/properties/optionActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err346];}else{vErrors.push(err346);}errors++;}}}else{const err347={instancePath:instancePath+"/fields/"+i2+"/options/"+i23+"/optionActions",schemaPath:"#/properties/fields/items/anyOf/9/properties/options/items/properties/optionActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err347];}else{vErrors.push(err347);}errors++;}}}else{const err348={instancePath:instancePath+"/fields/"+i2+"/options/"+i23,schemaPath:"#/properties/fields/items/anyOf/9/properties/options/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err348];}else{vErrors.push(err348);}errors++;}}}else{const err349={instancePath:instancePath+"/fields/"+i2+"/options",schemaPath:"#/properties/fields/items/anyOf/9/properties/options/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err349];}else{vErrors.push(err349);}errors++;}}}else{const err350={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/9/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err350];}else{vErrors.push(err350);}errors++;}var _valid0=_errs548===errors;valid7=valid7||_valid0;if(!valid7){const _errs616=errors;if(data14&&typeof data14=="object"&&!Array.isArray(data14)){if(data14.name===undefined){const err351={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/10/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err351];}else{vErrors.push(err351);}errors++;}if(data14.value===undefined){const err352={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/10/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err352];}else{vErrors.push(err352);}errors++;}if(data14.type!==undefined){let data277=data14.type;const _errs619=errors;let valid94=false;const _errs620=errors;if(data277&&typeof data277=="object"&&!Array.isArray(data277)){if(data277.UIComponentName!==undefined){if(typeof data277.UIComponentName!=="string"){const err353={instancePath:instancePath+"/fields/"+i2+"/type/UIComponentName",schemaPath:"#/properties/fields/items/anyOf/10/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err353];}else{vErrors.push(err353);}errors++;}}}else{const err354={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/10/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err354];}else{vErrors.push(err354);}errors++;}var _valid11=_errs620===errors;valid94=valid94||_valid11;if(!valid94){const _errs624=errors;if(typeof data277!=="string"){const err355={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/10/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err355];}else{vErrors.push(err355);}errors++;}var _valid11=_errs624===errors;valid94=valid94||_valid11;}if(!valid94){const err356={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/10/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err356];}else{vErrors.push(err356);}errors++;}else{errors=_errs619;if(vErrors!==null){if(_errs619){vErrors.length=_errs619;}else{vErrors=null;}}}}if(data14.uiConfig!==undefined){let data279=data14.uiConfig;if(data279&&typeof data279=="object"&&!Array.isArray(data279)){if(data279.size!==undefined){let data280=data279.size;if(typeof data280!=="string"){const err357={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/10/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err357];}else{vErrors.push(err357);}errors++;}if(!(data280==="small"||data280==="large")){const err358={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/10/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[10].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err358];}else{vErrors.push(err358);}errors++;}}if(data279.breakRow!==undefined){if(typeof data279.breakRow!=="boolean"){const err359={instancePath:instancePath+"/fields/"+i2+"/uiConfig/breakRow",schemaPath:"#/properties/fields/items/anyOf/10/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err359];}else{vErrors.push(err359);}errors++;}}}else{const err360={instancePath:instancePath+"/fields/"+i2+"/uiConfig",schemaPath:"#/properties/fields/items/anyOf/10/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err360];}else{vErrors.push(err360);}errors++;}}if(data14.id!==undefined){if(typeof data14.id!=="string"){const err361={instancePath:instancePath+"/fields/"+i2+"/id",schemaPath:"#/properties/fields/items/anyOf/10/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err361];}else{vErrors.push(err361);}errors++;}}if(data14.name!==undefined){if(typeof data14.name!=="string"){const err362={instancePath:instancePath+"/fields/"+i2+"/name",schemaPath:"#/properties/fields/items/anyOf/10/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err362];}else{vErrors.push(err362);}errors++;}}if(data14.label!==undefined){if(typeof data14.label!=="string"){const err363={instancePath:instancePath+"/fields/"+i2+"/label",schemaPath:"#/properties/fields/items/anyOf/10/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err363];}else{vErrors.push(err363);}errors++;}}if(data14.value!==undefined){let data285=data14.value;if(typeof data285!=="string"&&!(typeof data285=="number")){const err364={instancePath:instancePath+"/fields/"+i2+"/value",schemaPath:"#/properties/fields/items/anyOf/10/properties/value/type",keyword:"type",params:{type:schema55.properties.fields.items.anyOf[10].properties.value.type},message:"must be string,number"};if(vErrors===null){vErrors=[err364];}else{vErrors.push(err364);}errors++;}}if(data14.isVisible!==undefined){if(typeof data14.isVisible!=="boolean"){const err365={instancePath:instancePath+"/fields/"+i2+"/isVisible",schemaPath:"#/properties/fields/items/anyOf/10/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err365];}else{vErrors.push(err365);}errors++;}}if(data14.isFocused!==undefined){if(typeof data14.isFocused!=="boolean"){const err366={instancePath:instancePath+"/fields/"+i2+"/isFocused",schemaPath:"#/properties/fields/items/anyOf/10/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err366];}else{vErrors.push(err366);}errors++;}}if(data14.errorMessage!==undefined){if(typeof data14.errorMessage!=="string"){const err367={instancePath:instancePath+"/fields/"+i2+"/errorMessage",schemaPath:"#/properties/fields/items/anyOf/10/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err367];}else{vErrors.push(err367);}errors++;}}if(data14.tooltip!==undefined){if(typeof data14.tooltip!=="string"){const err368={instancePath:instancePath+"/fields/"+i2+"/tooltip",schemaPath:"#/properties/fields/items/anyOf/10/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err368];}else{vErrors.push(err368);}errors++;}}if(data14.toolTipType!==undefined){if(typeof data14.toolTipType!=="string"){const err369={instancePath:instancePath+"/fields/"+i2+"/toolTipType",schemaPath:"#/properties/fields/items/anyOf/10/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err369];}else{vErrors.push(err369);}errors++;}}if(data14.required!==undefined){if(typeof data14.required!=="boolean"){const err370={instancePath:instancePath+"/fields/"+i2+"/required",schemaPath:"#/properties/fields/items/anyOf/10/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err370];}else{vErrors.push(err370);}errors++;}}if(data14.disabled!==undefined){if(typeof data14.disabled!=="boolean"){const err371={instancePath:instancePath+"/fields/"+i2+"/disabled",schemaPath:"#/properties/fields/items/anyOf/10/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err371];}else{vErrors.push(err371);}errors++;}}if(data14.labelActions!==undefined){let data293=data14.labelActions;if(Array.isArray(data293)){const len25=data293.length;for(let i25=0;i25<len25;i25++){let data294=data293[i25];if(!(data294&&typeof data294=="object"&&!Array.isArray(data294))){const err372={instancePath:instancePath+"/fields/"+i2+"/labelActions/"+i25,schemaPath:"#/properties/fields/items/anyOf/10/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err372];}else{vErrors.push(err372);}errors++;}}}else{const err373={instancePath:instancePath+"/fields/"+i2+"/labelActions",schemaPath:"#/properties/fields/items/anyOf/10/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err373];}else{vErrors.push(err373);}errors++;}}if(data14.actions!==undefined){let data295=data14.actions;if(Array.isArray(data295)){const len26=data295.length;for(let i26=0;i26<len26;i26++){let data296=data295[i26];if(!(data296&&typeof data296=="object"&&!Array.isArray(data296))){const err374={instancePath:instancePath+"/fields/"+i2+"/actions/"+i26,schemaPath:"#/properties/fields/items/anyOf/10/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err374];}else{vErrors.push(err374);}errors++;}}}else{const err375={instancePath:instancePath+"/fields/"+i2+"/actions",schemaPath:"#/properties/fields/items/anyOf/10/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err375];}else{vErrors.push(err375);}errors++;}}if(data14.textOverflowMode!==undefined){let data297=data14.textOverflowMode;if(typeof data297!=="string"){const err376={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/10/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err376];}else{vErrors.push(err376);}errors++;}if(!(data297==="clip"||data297==="wrap")){const err377={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/10/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[10].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err377];}else{vErrors.push(err377);}errors++;}}if(data14.isRead!==undefined){if(typeof data14.isRead!=="boolean"){const err378={instancePath:instancePath+"/fields/"+i2+"/isRead",schemaPath:"#/properties/fields/items/anyOf/10/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err378];}else{vErrors.push(err378);}errors++;}}if(data14.readonly!==undefined){if(typeof data14.readonly!=="boolean"){const err379={instancePath:instancePath+"/fields/"+i2+"/readonly",schemaPath:"#/properties/fields/items/anyOf/10/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err379];}else{vErrors.push(err379);}errors++;}}if(data14.clientScripts!==undefined){if(!Array.isArray(data14.clientScripts)){const err380={instancePath:instancePath+"/fields/"+i2+"/clientScripts",schemaPath:"#/properties/fields/items/anyOf/10/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err380];}else{vErrors.push(err380);}errors++;}}if(data14.placeholder!==undefined){if(typeof data14.placeholder!=="string"){const err381={instancePath:instancePath+"/fields/"+i2+"/placeholder",schemaPath:"#/properties/fields/items/anyOf/10/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err381];}else{vErrors.push(err381);}errors++;}}if(data14.maxLength!==undefined){if(!(typeof data14.maxLength=="number")){const err382={instancePath:instancePath+"/fields/"+i2+"/maxLength",schemaPath:"#/properties/fields/items/anyOf/10/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err382];}else{vErrors.push(err382);}errors++;}}if(data14.ePHI!==undefined){if(typeof data14.ePHI!=="boolean"){const err383={instancePath:instancePath+"/fields/"+i2+"/ePHI",schemaPath:"#/properties/fields/items/anyOf/10/properties/ePHI/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err383];}else{vErrors.push(err383);}errors++;}}}else{const err384={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/10/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err384];}else{vErrors.push(err384);}errors++;}var _valid0=_errs616===errors;valid7=valid7||_valid0;if(!valid7){const _errs676=errors;if(data14&&typeof data14=="object"&&!Array.isArray(data14)){if(data14.name===undefined){const err385={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/11/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err385];}else{vErrors.push(err385);}errors++;}if(data14.value===undefined){const err386={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/11/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err386];}else{vErrors.push(err386);}errors++;}if(data14.type!==undefined){let data304=data14.type;const _errs679=errors;let valid102=false;const _errs680=errors;if(data304&&typeof data304=="object"&&!Array.isArray(data304)){if(data304.UIComponentName!==undefined){if(typeof data304.UIComponentName!=="string"){const err387={instancePath:instancePath+"/fields/"+i2+"/type/UIComponentName",schemaPath:"#/properties/fields/items/anyOf/11/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err387];}else{vErrors.push(err387);}errors++;}}}else{const err388={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/11/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err388];}else{vErrors.push(err388);}errors++;}var _valid12=_errs680===errors;valid102=valid102||_valid12;if(!valid102){const _errs684=errors;if(typeof data304!=="string"){const err389={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/11/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err389];}else{vErrors.push(err389);}errors++;}var _valid12=_errs684===errors;valid102=valid102||_valid12;}if(!valid102){const err390={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/11/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err390];}else{vErrors.push(err390);}errors++;}else{errors=_errs679;if(vErrors!==null){if(_errs679){vErrors.length=_errs679;}else{vErrors=null;}}}}if(data14.uiConfig!==undefined){let data306=data14.uiConfig;if(data306&&typeof data306=="object"&&!Array.isArray(data306)){if(data306.size!==undefined){let data307=data306.size;if(typeof data307!=="string"){const err391={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/11/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err391];}else{vErrors.push(err391);}errors++;}if(!(data307==="small"||data307==="large")){const err392={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/11/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[11].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err392];}else{vErrors.push(err392);}errors++;}}if(data306.breakRow!==undefined){if(typeof data306.breakRow!=="boolean"){const err393={instancePath:instancePath+"/fields/"+i2+"/uiConfig/breakRow",schemaPath:"#/properties/fields/items/anyOf/11/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err393];}else{vErrors.push(err393);}errors++;}}}else{const err394={instancePath:instancePath+"/fields/"+i2+"/uiConfig",schemaPath:"#/properties/fields/items/anyOf/11/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err394];}else{vErrors.push(err394);}errors++;}}if(data14.id!==undefined){if(typeof data14.id!=="string"){const err395={instancePath:instancePath+"/fields/"+i2+"/id",schemaPath:"#/properties/fields/items/anyOf/11/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err395];}else{vErrors.push(err395);}errors++;}}if(data14.name!==undefined){if(typeof data14.name!=="string"){const err396={instancePath:instancePath+"/fields/"+i2+"/name",schemaPath:"#/properties/fields/items/anyOf/11/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err396];}else{vErrors.push(err396);}errors++;}}if(data14.label!==undefined){if(typeof data14.label!=="string"){const err397={instancePath:instancePath+"/fields/"+i2+"/label",schemaPath:"#/properties/fields/items/anyOf/11/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err397];}else{vErrors.push(err397);}errors++;}}if(data14.value!==undefined){if(typeof data14.value!=="string"){const err398={instancePath:instancePath+"/fields/"+i2+"/value",schemaPath:"#/properties/fields/items/anyOf/11/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err398];}else{vErrors.push(err398);}errors++;}}if(data14.isVisible!==undefined){if(typeof data14.isVisible!=="boolean"){const err399={instancePath:instancePath+"/fields/"+i2+"/isVisible",schemaPath:"#/properties/fields/items/anyOf/11/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err399];}else{vErrors.push(err399);}errors++;}}if(data14.isFocused!==undefined){if(typeof data14.isFocused!=="boolean"){const err400={instancePath:instancePath+"/fields/"+i2+"/isFocused",schemaPath:"#/properties/fields/items/anyOf/11/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err400];}else{vErrors.push(err400);}errors++;}}if(data14.errorMessage!==undefined){if(typeof data14.errorMessage!=="string"){const err401={instancePath:instancePath+"/fields/"+i2+"/errorMessage",schemaPath:"#/properties/fields/items/anyOf/11/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err401];}else{vErrors.push(err401);}errors++;}}if(data14.tooltip!==undefined){if(typeof data14.tooltip!=="string"){const err402={instancePath:instancePath+"/fields/"+i2+"/tooltip",schemaPath:"#/properties/fields/items/anyOf/11/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err402];}else{vErrors.push(err402);}errors++;}}if(data14.toolTipType!==undefined){if(typeof data14.toolTipType!=="string"){const err403={instancePath:instancePath+"/fields/"+i2+"/toolTipType",schemaPath:"#/properties/fields/items/anyOf/11/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err403];}else{vErrors.push(err403);}errors++;}}if(data14.required!==undefined){if(typeof data14.required!=="boolean"){const err404={instancePath:instancePath+"/fields/"+i2+"/required",schemaPath:"#/properties/fields/items/anyOf/11/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err404];}else{vErrors.push(err404);}errors++;}}if(data14.disabled!==undefined){if(typeof data14.disabled!=="boolean"){const err405={instancePath:instancePath+"/fields/"+i2+"/disabled",schemaPath:"#/properties/fields/items/anyOf/11/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err405];}else{vErrors.push(err405);}errors++;}}if(data14.labelActions!==undefined){let data320=data14.labelActions;if(Array.isArray(data320)){const len27=data320.length;for(let i27=0;i27<len27;i27++){let data321=data320[i27];if(!(data321&&typeof data321=="object"&&!Array.isArray(data321))){const err406={instancePath:instancePath+"/fields/"+i2+"/labelActions/"+i27,schemaPath:"#/properties/fields/items/anyOf/11/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err406];}else{vErrors.push(err406);}errors++;}}}else{const err407={instancePath:instancePath+"/fields/"+i2+"/labelActions",schemaPath:"#/properties/fields/items/anyOf/11/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err407];}else{vErrors.push(err407);}errors++;}}if(data14.actions!==undefined){let data322=data14.actions;if(Array.isArray(data322)){const len28=data322.length;for(let i28=0;i28<len28;i28++){let data323=data322[i28];if(!(data323&&typeof data323=="object"&&!Array.isArray(data323))){const err408={instancePath:instancePath+"/fields/"+i2+"/actions/"+i28,schemaPath:"#/properties/fields/items/anyOf/11/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err408];}else{vErrors.push(err408);}errors++;}}}else{const err409={instancePath:instancePath+"/fields/"+i2+"/actions",schemaPath:"#/properties/fields/items/anyOf/11/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err409];}else{vErrors.push(err409);}errors++;}}if(data14.textOverflowMode!==undefined){let data324=data14.textOverflowMode;if(typeof data324!=="string"){const err410={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/11/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err410];}else{vErrors.push(err410);}errors++;}if(!(data324==="clip"||data324==="wrap")){const err411={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/11/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[11].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err411];}else{vErrors.push(err411);}errors++;}}if(data14.isRead!==undefined){if(typeof data14.isRead!=="boolean"){const err412={instancePath:instancePath+"/fields/"+i2+"/isRead",schemaPath:"#/properties/fields/items/anyOf/11/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err412];}else{vErrors.push(err412);}errors++;}}if(data14.readonly!==undefined){if(typeof data14.readonly!=="boolean"){const err413={instancePath:instancePath+"/fields/"+i2+"/readonly",schemaPath:"#/properties/fields/items/anyOf/11/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err413];}else{vErrors.push(err413);}errors++;}}if(data14.clientScripts!==undefined){if(!Array.isArray(data14.clientScripts)){const err414={instancePath:instancePath+"/fields/"+i2+"/clientScripts",schemaPath:"#/properties/fields/items/anyOf/11/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err414];}else{vErrors.push(err414);}errors++;}}if(data14.placeholder!==undefined){if(typeof data14.placeholder!=="string"){const err415={instancePath:instancePath+"/fields/"+i2+"/placeholder",schemaPath:"#/properties/fields/items/anyOf/11/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err415];}else{vErrors.push(err415);}errors++;}}if(data14.ePHI!==undefined){if(typeof data14.ePHI!=="boolean"){const err416={instancePath:instancePath+"/fields/"+i2+"/ePHI",schemaPath:"#/properties/fields/items/anyOf/11/properties/ePHI/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err416];}else{vErrors.push(err416);}errors++;}}}else{const err417={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/11/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err417];}else{vErrors.push(err417);}errors++;}var _valid0=_errs676===errors;valid7=valid7||_valid0;if(!valid7){const _errs734=errors;if(data14&&typeof data14=="object"&&!Array.isArray(data14)){if(data14.name===undefined){const err418={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/12/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err418];}else{vErrors.push(err418);}errors++;}if(data14.value===undefined){const err419={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/12/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err419];}else{vErrors.push(err419);}errors++;}if(data14.type!==undefined){let data330=data14.type;const _errs737=errors;let valid110=false;const _errs738=errors;if(data330&&typeof data330=="object"&&!Array.isArray(data330)){if(data330.UIComponentName!==undefined){if(typeof data330.UIComponentName!=="string"){const err420={instancePath:instancePath+"/fields/"+i2+"/type/UIComponentName",schemaPath:"#/properties/fields/items/anyOf/12/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err420];}else{vErrors.push(err420);}errors++;}}}else{const err421={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/12/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err421];}else{vErrors.push(err421);}errors++;}var _valid13=_errs738===errors;valid110=valid110||_valid13;if(!valid110){const _errs742=errors;if(typeof data330!=="string"){const err422={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/12/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err422];}else{vErrors.push(err422);}errors++;}var _valid13=_errs742===errors;valid110=valid110||_valid13;}if(!valid110){const err423={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/12/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err423];}else{vErrors.push(err423);}errors++;}else{errors=_errs737;if(vErrors!==null){if(_errs737){vErrors.length=_errs737;}else{vErrors=null;}}}}if(data14.uiConfig!==undefined){let data332=data14.uiConfig;if(data332&&typeof data332=="object"&&!Array.isArray(data332)){if(data332.size!==undefined){let data333=data332.size;if(typeof data333!=="string"){const err424={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/12/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err424];}else{vErrors.push(err424);}errors++;}if(!(data333==="small"||data333==="large")){const err425={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/12/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[12].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err425];}else{vErrors.push(err425);}errors++;}}if(data332.breakRow!==undefined){if(typeof data332.breakRow!=="boolean"){const err426={instancePath:instancePath+"/fields/"+i2+"/uiConfig/breakRow",schemaPath:"#/properties/fields/items/anyOf/12/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err426];}else{vErrors.push(err426);}errors++;}}}else{const err427={instancePath:instancePath+"/fields/"+i2+"/uiConfig",schemaPath:"#/properties/fields/items/anyOf/12/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err427];}else{vErrors.push(err427);}errors++;}}if(data14.id!==undefined){if(typeof data14.id!=="string"){const err428={instancePath:instancePath+"/fields/"+i2+"/id",schemaPath:"#/properties/fields/items/anyOf/12/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err428];}else{vErrors.push(err428);}errors++;}}if(data14.name!==undefined){if(typeof data14.name!=="string"){const err429={instancePath:instancePath+"/fields/"+i2+"/name",schemaPath:"#/properties/fields/items/anyOf/12/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err429];}else{vErrors.push(err429);}errors++;}}if(data14.label!==undefined){if(typeof data14.label!=="string"){const err430={instancePath:instancePath+"/fields/"+i2+"/label",schemaPath:"#/properties/fields/items/anyOf/12/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err430];}else{vErrors.push(err430);}errors++;}}if(data14.value!==undefined){if(typeof data14.value!=="string"){const err431={instancePath:instancePath+"/fields/"+i2+"/value",schemaPath:"#/properties/fields/items/anyOf/12/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err431];}else{vErrors.push(err431);}errors++;}}if(data14.isVisible!==undefined){if(typeof data14.isVisible!=="boolean"){const err432={instancePath:instancePath+"/fields/"+i2+"/isVisible",schemaPath:"#/properties/fields/items/anyOf/12/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err432];}else{vErrors.push(err432);}errors++;}}if(data14.isFocused!==undefined){if(typeof data14.isFocused!=="boolean"){const err433={instancePath:instancePath+"/fields/"+i2+"/isFocused",schemaPath:"#/properties/fields/items/anyOf/12/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err433];}else{vErrors.push(err433);}errors++;}}if(data14.errorMessage!==undefined){if(typeof data14.errorMessage!=="string"){const err434={instancePath:instancePath+"/fields/"+i2+"/errorMessage",schemaPath:"#/properties/fields/items/anyOf/12/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err434];}else{vErrors.push(err434);}errors++;}}if(data14.tooltip!==undefined){if(typeof data14.tooltip!=="string"){const err435={instancePath:instancePath+"/fields/"+i2+"/tooltip",schemaPath:"#/properties/fields/items/anyOf/12/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err435];}else{vErrors.push(err435);}errors++;}}if(data14.toolTipType!==undefined){if(typeof data14.toolTipType!=="string"){const err436={instancePath:instancePath+"/fields/"+i2+"/toolTipType",schemaPath:"#/properties/fields/items/anyOf/12/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err436];}else{vErrors.push(err436);}errors++;}}if(data14.required!==undefined){if(typeof data14.required!=="boolean"){const err437={instancePath:instancePath+"/fields/"+i2+"/required",schemaPath:"#/properties/fields/items/anyOf/12/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err437];}else{vErrors.push(err437);}errors++;}}if(data14.disabled!==undefined){if(typeof data14.disabled!=="boolean"){const err438={instancePath:instancePath+"/fields/"+i2+"/disabled",schemaPath:"#/properties/fields/items/anyOf/12/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err438];}else{vErrors.push(err438);}errors++;}}if(data14.labelActions!==undefined){let data346=data14.labelActions;if(Array.isArray(data346)){const len29=data346.length;for(let i29=0;i29<len29;i29++){let data347=data346[i29];if(!(data347&&typeof data347=="object"&&!Array.isArray(data347))){const err439={instancePath:instancePath+"/fields/"+i2+"/labelActions/"+i29,schemaPath:"#/properties/fields/items/anyOf/12/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err439];}else{vErrors.push(err439);}errors++;}}}else{const err440={instancePath:instancePath+"/fields/"+i2+"/labelActions",schemaPath:"#/properties/fields/items/anyOf/12/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err440];}else{vErrors.push(err440);}errors++;}}if(data14.actions!==undefined){let data348=data14.actions;if(Array.isArray(data348)){const len30=data348.length;for(let i30=0;i30<len30;i30++){let data349=data348[i30];if(!(data349&&typeof data349=="object"&&!Array.isArray(data349))){const err441={instancePath:instancePath+"/fields/"+i2+"/actions/"+i30,schemaPath:"#/properties/fields/items/anyOf/12/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err441];}else{vErrors.push(err441);}errors++;}}}else{const err442={instancePath:instancePath+"/fields/"+i2+"/actions",schemaPath:"#/properties/fields/items/anyOf/12/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err442];}else{vErrors.push(err442);}errors++;}}if(data14.textOverflowMode!==undefined){let data350=data14.textOverflowMode;if(typeof data350!=="string"){const err443={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/12/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err443];}else{vErrors.push(err443);}errors++;}if(!(data350==="clip"||data350==="wrap")){const err444={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/12/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[12].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err444];}else{vErrors.push(err444);}errors++;}}if(data14.isRead!==undefined){if(typeof data14.isRead!=="boolean"){const err445={instancePath:instancePath+"/fields/"+i2+"/isRead",schemaPath:"#/properties/fields/items/anyOf/12/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err445];}else{vErrors.push(err445);}errors++;}}if(data14.readonly!==undefined){if(typeof data14.readonly!=="boolean"){const err446={instancePath:instancePath+"/fields/"+i2+"/readonly",schemaPath:"#/properties/fields/items/anyOf/12/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err446];}else{vErrors.push(err446);}errors++;}}if(data14.clientScripts!==undefined){if(!Array.isArray(data14.clientScripts)){const err447={instancePath:instancePath+"/fields/"+i2+"/clientScripts",schemaPath:"#/properties/fields/items/anyOf/12/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err447];}else{vErrors.push(err447);}errors++;}}if(data14.placeholder!==undefined){if(typeof data14.placeholder!=="string"){const err448={instancePath:instancePath+"/fields/"+i2+"/placeholder",schemaPath:"#/properties/fields/items/anyOf/12/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err448];}else{vErrors.push(err448);}errors++;}}if(data14.maxLength!==undefined){if(!(typeof data14.maxLength=="number")){const err449={instancePath:instancePath+"/fields/"+i2+"/maxLength",schemaPath:"#/properties/fields/items/anyOf/12/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err449];}else{vErrors.push(err449);}errors++;}}if(data14.ePHI!==undefined){if(typeof data14.ePHI!=="boolean"){const err450={instancePath:instancePath+"/fields/"+i2+"/ePHI",schemaPath:"#/properties/fields/items/anyOf/12/properties/ePHI/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err450];}else{vErrors.push(err450);}errors++;}}}else{const err451={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/12/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err451];}else{vErrors.push(err451);}errors++;}var _valid0=_errs734===errors;valid7=valid7||_valid0;if(!valid7){const _errs794=errors;if(data14&&typeof data14=="object"&&!Array.isArray(data14)){if(data14.name===undefined){const err452={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/13/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err452];}else{vErrors.push(err452);}errors++;}if(data14.value===undefined){const err453={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/13/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err453];}else{vErrors.push(err453);}errors++;}if(data14.type!==undefined){let data357=data14.type;const _errs797=errors;let valid118=false;const _errs798=errors;if(data357&&typeof data357=="object"&&!Array.isArray(data357)){if(data357.UIComponentName!==undefined){if(typeof data357.UIComponentName!=="string"){const err454={instancePath:instancePath+"/fields/"+i2+"/type/UIComponentName",schemaPath:"#/properties/fields/items/anyOf/13/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err454];}else{vErrors.push(err454);}errors++;}}}else{const err455={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/13/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err455];}else{vErrors.push(err455);}errors++;}var _valid14=_errs798===errors;valid118=valid118||_valid14;if(!valid118){const _errs802=errors;if(typeof data357!=="string"){const err456={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/13/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err456];}else{vErrors.push(err456);}errors++;}var _valid14=_errs802===errors;valid118=valid118||_valid14;}if(!valid118){const err457={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/13/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err457];}else{vErrors.push(err457);}errors++;}else{errors=_errs797;if(vErrors!==null){if(_errs797){vErrors.length=_errs797;}else{vErrors=null;}}}}if(data14.uiConfig!==undefined){let data359=data14.uiConfig;if(data359&&typeof data359=="object"&&!Array.isArray(data359)){if(data359.size!==undefined){let data360=data359.size;if(typeof data360!=="string"){const err458={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/13/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err458];}else{vErrors.push(err458);}errors++;}if(!(data360==="small"||data360==="large")){const err459={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/13/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[13].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err459];}else{vErrors.push(err459);}errors++;}}if(data359.breakRow!==undefined){if(typeof data359.breakRow!=="boolean"){const err460={instancePath:instancePath+"/fields/"+i2+"/uiConfig/breakRow",schemaPath:"#/properties/fields/items/anyOf/13/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err460];}else{vErrors.push(err460);}errors++;}}}else{const err461={instancePath:instancePath+"/fields/"+i2+"/uiConfig",schemaPath:"#/properties/fields/items/anyOf/13/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err461];}else{vErrors.push(err461);}errors++;}}if(data14.id!==undefined){if(typeof data14.id!=="string"){const err462={instancePath:instancePath+"/fields/"+i2+"/id",schemaPath:"#/properties/fields/items/anyOf/13/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err462];}else{vErrors.push(err462);}errors++;}}if(data14.name!==undefined){if(typeof data14.name!=="string"){const err463={instancePath:instancePath+"/fields/"+i2+"/name",schemaPath:"#/properties/fields/items/anyOf/13/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err463];}else{vErrors.push(err463);}errors++;}}if(data14.label!==undefined){if(typeof data14.label!=="string"){const err464={instancePath:instancePath+"/fields/"+i2+"/label",schemaPath:"#/properties/fields/items/anyOf/13/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err464];}else{vErrors.push(err464);}errors++;}}if(data14.value!==undefined){if(typeof data14.value!=="string"){const err465={instancePath:instancePath+"/fields/"+i2+"/value",schemaPath:"#/properties/fields/items/anyOf/13/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err465];}else{vErrors.push(err465);}errors++;}}if(data14.isVisible!==undefined){if(typeof data14.isVisible!=="boolean"){const err466={instancePath:instancePath+"/fields/"+i2+"/isVisible",schemaPath:"#/properties/fields/items/anyOf/13/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err466];}else{vErrors.push(err466);}errors++;}}if(data14.isFocused!==undefined){if(typeof data14.isFocused!=="boolean"){const err467={instancePath:instancePath+"/fields/"+i2+"/isFocused",schemaPath:"#/properties/fields/items/anyOf/13/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err467];}else{vErrors.push(err467);}errors++;}}if(data14.errorMessage!==undefined){if(typeof data14.errorMessage!=="string"){const err468={instancePath:instancePath+"/fields/"+i2+"/errorMessage",schemaPath:"#/properties/fields/items/anyOf/13/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err468];}else{vErrors.push(err468);}errors++;}}if(data14.tooltip!==undefined){if(typeof data14.tooltip!=="string"){const err469={instancePath:instancePath+"/fields/"+i2+"/tooltip",schemaPath:"#/properties/fields/items/anyOf/13/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err469];}else{vErrors.push(err469);}errors++;}}if(data14.toolTipType!==undefined){if(typeof data14.toolTipType!=="string"){const err470={instancePath:instancePath+"/fields/"+i2+"/toolTipType",schemaPath:"#/properties/fields/items/anyOf/13/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err470];}else{vErrors.push(err470);}errors++;}}if(data14.required!==undefined){if(typeof data14.required!=="boolean"){const err471={instancePath:instancePath+"/fields/"+i2+"/required",schemaPath:"#/properties/fields/items/anyOf/13/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err471];}else{vErrors.push(err471);}errors++;}}if(data14.disabled!==undefined){if(typeof data14.disabled!=="boolean"){const err472={instancePath:instancePath+"/fields/"+i2+"/disabled",schemaPath:"#/properties/fields/items/anyOf/13/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err472];}else{vErrors.push(err472);}errors++;}}if(data14.labelActions!==undefined){let data373=data14.labelActions;if(Array.isArray(data373)){const len31=data373.length;for(let i31=0;i31<len31;i31++){let data374=data373[i31];if(!(data374&&typeof data374=="object"&&!Array.isArray(data374))){const err473={instancePath:instancePath+"/fields/"+i2+"/labelActions/"+i31,schemaPath:"#/properties/fields/items/anyOf/13/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err473];}else{vErrors.push(err473);}errors++;}}}else{const err474={instancePath:instancePath+"/fields/"+i2+"/labelActions",schemaPath:"#/properties/fields/items/anyOf/13/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err474];}else{vErrors.push(err474);}errors++;}}if(data14.actions!==undefined){let data375=data14.actions;if(Array.isArray(data375)){const len32=data375.length;for(let i32=0;i32<len32;i32++){let data376=data375[i32];if(!(data376&&typeof data376=="object"&&!Array.isArray(data376))){const err475={instancePath:instancePath+"/fields/"+i2+"/actions/"+i32,schemaPath:"#/properties/fields/items/anyOf/13/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err475];}else{vErrors.push(err475);}errors++;}}}else{const err476={instancePath:instancePath+"/fields/"+i2+"/actions",schemaPath:"#/properties/fields/items/anyOf/13/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err476];}else{vErrors.push(err476);}errors++;}}if(data14.textOverflowMode!==undefined){let data377=data14.textOverflowMode;if(typeof data377!=="string"){const err477={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/13/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err477];}else{vErrors.push(err477);}errors++;}if(!(data377==="clip"||data377==="wrap")){const err478={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/13/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[13].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err478];}else{vErrors.push(err478);}errors++;}}if(data14.isRead!==undefined){if(typeof data14.isRead!=="boolean"){const err479={instancePath:instancePath+"/fields/"+i2+"/isRead",schemaPath:"#/properties/fields/items/anyOf/13/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err479];}else{vErrors.push(err479);}errors++;}}if(data14.readonly!==undefined){if(typeof data14.readonly!=="boolean"){const err480={instancePath:instancePath+"/fields/"+i2+"/readonly",schemaPath:"#/properties/fields/items/anyOf/13/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err480];}else{vErrors.push(err480);}errors++;}}if(data14.clientScripts!==undefined){if(!Array.isArray(data14.clientScripts)){const err481={instancePath:instancePath+"/fields/"+i2+"/clientScripts",schemaPath:"#/properties/fields/items/anyOf/13/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err481];}else{vErrors.push(err481);}errors++;}}if(data14.subType!==undefined){let data381=data14.subType;if(typeof data381!=="string"){const err482={instancePath:instancePath+"/fields/"+i2+"/subType",schemaPath:"#/properties/fields/items/anyOf/13/properties/subType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err482];}else{vErrors.push(err482);}errors++;}if(!(data381==="plain"||data381==="colored"||data381==="colorcoded")){const err483={instancePath:instancePath+"/fields/"+i2+"/subType",schemaPath:"#/properties/fields/items/anyOf/13/properties/subType/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[13].properties.subType.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err483];}else{vErrors.push(err483);}errors++;}}if(data14.placeholder!==undefined){if(typeof data14.placeholder!=="string"){const err484={instancePath:instancePath+"/fields/"+i2+"/placeholder",schemaPath:"#/properties/fields/items/anyOf/13/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err484];}else{vErrors.push(err484);}errors++;}}if(data14.options!==undefined){let data383=data14.options;if(Array.isArray(data383)){const len33=data383.length;for(let i33=0;i33<len33;i33++){let data384=data383[i33];if(data384&&typeof data384=="object"&&!Array.isArray(data384)){if(data384.value===undefined){const err485={instancePath:instancePath+"/fields/"+i2+"/options/"+i33,schemaPath:"#/properties/fields/items/anyOf/13/properties/options/items/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err485];}else{vErrors.push(err485);}errors++;}if(data384.value!==undefined){if(typeof data384.value!=="string"){const err486={instancePath:instancePath+"/fields/"+i2+"/options/"+i33+"/value",schemaPath:"#/properties/fields/items/anyOf/13/properties/options/items/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err486];}else{vErrors.push(err486);}errors++;}}if(data384.optionActions!==undefined){let data386=data384.optionActions;if(Array.isArray(data386)){const len34=data386.length;for(let i34=0;i34<len34;i34++){let data387=data386[i34];if(!(data387&&typeof data387=="object"&&!Array.isArray(data387))){const err487={instancePath:instancePath+"/fields/"+i2+"/options/"+i33+"/optionActions/"+i34,schemaPath:"#/properties/fields/items/anyOf/13/properties/options/items/properties/optionActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err487];}else{vErrors.push(err487);}errors++;}}}else{const err488={instancePath:instancePath+"/fields/"+i2+"/options/"+i33+"/optionActions",schemaPath:"#/properties/fields/items/anyOf/13/properties/options/items/properties/optionActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err488];}else{vErrors.push(err488);}errors++;}}}else{const err489={instancePath:instancePath+"/fields/"+i2+"/options/"+i33,schemaPath:"#/properties/fields/items/anyOf/13/properties/options/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err489];}else{vErrors.push(err489);}errors++;}}}else{const err490={instancePath:instancePath+"/fields/"+i2+"/options",schemaPath:"#/properties/fields/items/anyOf/13/properties/options/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err490];}else{vErrors.push(err490);}errors++;}}}else{const err491={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/13/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err491];}else{vErrors.push(err491);}errors++;}var _valid0=_errs794===errors;valid7=valid7||_valid0;if(!valid7){const _errs862=errors;if(data14&&typeof data14=="object"&&!Array.isArray(data14)){if(data14.name===undefined){const err492={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/14/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err492];}else{vErrors.push(err492);}errors++;}if(data14.value===undefined){const err493={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/14/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err493];}else{vErrors.push(err493);}errors++;}if(data14.type!==undefined){let data388=data14.type;const _errs865=errors;let valid131=false;const _errs866=errors;if(data388&&typeof data388=="object"&&!Array.isArray(data388)){if(data388.UIComponentName!==undefined){if(typeof data388.UIComponentName!=="string"){const err494={instancePath:instancePath+"/fields/"+i2+"/type/UIComponentName",schemaPath:"#/properties/fields/items/anyOf/14/properties/type/anyOf/0/properties/UIComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err494];}else{vErrors.push(err494);}errors++;}}}else{const err495={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/14/properties/type/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err495];}else{vErrors.push(err495);}errors++;}var _valid15=_errs866===errors;valid131=valid131||_valid15;if(!valid131){const _errs870=errors;if(typeof data388!=="string"){const err496={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/14/properties/type/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err496];}else{vErrors.push(err496);}errors++;}var _valid15=_errs870===errors;valid131=valid131||_valid15;}if(!valid131){const err497={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/14/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err497];}else{vErrors.push(err497);}errors++;}else{errors=_errs865;if(vErrors!==null){if(_errs865){vErrors.length=_errs865;}else{vErrors=null;}}}}if(data14.uiConfig!==undefined){let data390=data14.uiConfig;if(data390&&typeof data390=="object"&&!Array.isArray(data390)){if(data390.size!==undefined){let data391=data390.size;if(typeof data391!=="string"){const err498={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/14/properties/uiConfig/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err498];}else{vErrors.push(err498);}errors++;}if(!(data391==="small"||data391==="large")){const err499={instancePath:instancePath+"/fields/"+i2+"/uiConfig/size",schemaPath:"#/properties/fields/items/anyOf/14/properties/uiConfig/properties/size/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[14].properties.uiConfig.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err499];}else{vErrors.push(err499);}errors++;}}if(data390.breakRow!==undefined){if(typeof data390.breakRow!=="boolean"){const err500={instancePath:instancePath+"/fields/"+i2+"/uiConfig/breakRow",schemaPath:"#/properties/fields/items/anyOf/14/properties/uiConfig/properties/breakRow/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err500];}else{vErrors.push(err500);}errors++;}}}else{const err501={instancePath:instancePath+"/fields/"+i2+"/uiConfig",schemaPath:"#/properties/fields/items/anyOf/14/properties/uiConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err501];}else{vErrors.push(err501);}errors++;}}if(data14.id!==undefined){if(typeof data14.id!=="string"){const err502={instancePath:instancePath+"/fields/"+i2+"/id",schemaPath:"#/properties/fields/items/anyOf/14/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err502];}else{vErrors.push(err502);}errors++;}}if(data14.name!==undefined){if(typeof data14.name!=="string"){const err503={instancePath:instancePath+"/fields/"+i2+"/name",schemaPath:"#/properties/fields/items/anyOf/14/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err503];}else{vErrors.push(err503);}errors++;}}if(data14.label!==undefined){if(typeof data14.label!=="string"){const err504={instancePath:instancePath+"/fields/"+i2+"/label",schemaPath:"#/properties/fields/items/anyOf/14/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err504];}else{vErrors.push(err504);}errors++;}}if(data14.value!==undefined){if(typeof data14.value!=="string"){const err505={instancePath:instancePath+"/fields/"+i2+"/value",schemaPath:"#/properties/fields/items/anyOf/14/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err505];}else{vErrors.push(err505);}errors++;}}if(data14.isVisible!==undefined){if(typeof data14.isVisible!=="boolean"){const err506={instancePath:instancePath+"/fields/"+i2+"/isVisible",schemaPath:"#/properties/fields/items/anyOf/14/properties/isVisible/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err506];}else{vErrors.push(err506);}errors++;}}if(data14.isFocused!==undefined){if(typeof data14.isFocused!=="boolean"){const err507={instancePath:instancePath+"/fields/"+i2+"/isFocused",schemaPath:"#/properties/fields/items/anyOf/14/properties/isFocused/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err507];}else{vErrors.push(err507);}errors++;}}if(data14.errorMessage!==undefined){if(typeof data14.errorMessage!=="string"){const err508={instancePath:instancePath+"/fields/"+i2+"/errorMessage",schemaPath:"#/properties/fields/items/anyOf/14/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err508];}else{vErrors.push(err508);}errors++;}}if(data14.tooltip!==undefined){if(typeof data14.tooltip!=="string"){const err509={instancePath:instancePath+"/fields/"+i2+"/tooltip",schemaPath:"#/properties/fields/items/anyOf/14/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err509];}else{vErrors.push(err509);}errors++;}}if(data14.toolTipType!==undefined){if(typeof data14.toolTipType!=="string"){const err510={instancePath:instancePath+"/fields/"+i2+"/toolTipType",schemaPath:"#/properties/fields/items/anyOf/14/properties/toolTipType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err510];}else{vErrors.push(err510);}errors++;}}if(data14.required!==undefined){if(typeof data14.required!=="boolean"){const err511={instancePath:instancePath+"/fields/"+i2+"/required",schemaPath:"#/properties/fields/items/anyOf/14/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err511];}else{vErrors.push(err511);}errors++;}}if(data14.disabled!==undefined){if(typeof data14.disabled!=="boolean"){const err512={instancePath:instancePath+"/fields/"+i2+"/disabled",schemaPath:"#/properties/fields/items/anyOf/14/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err512];}else{vErrors.push(err512);}errors++;}}if(data14.labelActions!==undefined){let data404=data14.labelActions;if(Array.isArray(data404)){const len35=data404.length;for(let i35=0;i35<len35;i35++){let data405=data404[i35];if(!(data405&&typeof data405=="object"&&!Array.isArray(data405))){const err513={instancePath:instancePath+"/fields/"+i2+"/labelActions/"+i35,schemaPath:"#/properties/fields/items/anyOf/14/properties/labelActions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err513];}else{vErrors.push(err513);}errors++;}}}else{const err514={instancePath:instancePath+"/fields/"+i2+"/labelActions",schemaPath:"#/properties/fields/items/anyOf/14/properties/labelActions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err514];}else{vErrors.push(err514);}errors++;}}if(data14.actions!==undefined){let data406=data14.actions;if(Array.isArray(data406)){const len36=data406.length;for(let i36=0;i36<len36;i36++){let data407=data406[i36];if(!(data407&&typeof data407=="object"&&!Array.isArray(data407))){const err515={instancePath:instancePath+"/fields/"+i2+"/actions/"+i36,schemaPath:"#/properties/fields/items/anyOf/14/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err515];}else{vErrors.push(err515);}errors++;}}}else{const err516={instancePath:instancePath+"/fields/"+i2+"/actions",schemaPath:"#/properties/fields/items/anyOf/14/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err516];}else{vErrors.push(err516);}errors++;}}if(data14.textOverflowMode!==undefined){let data408=data14.textOverflowMode;if(typeof data408!=="string"){const err517={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/14/properties/textOverflowMode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err517];}else{vErrors.push(err517);}errors++;}if(!(data408==="clip"||data408==="wrap")){const err518={instancePath:instancePath+"/fields/"+i2+"/textOverflowMode",schemaPath:"#/properties/fields/items/anyOf/14/properties/textOverflowMode/enum",keyword:"enum",params:{allowedValues:schema55.properties.fields.items.anyOf[14].properties.textOverflowMode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err518];}else{vErrors.push(err518);}errors++;}}if(data14.isRead!==undefined){if(typeof data14.isRead!=="boolean"){const err519={instancePath:instancePath+"/fields/"+i2+"/isRead",schemaPath:"#/properties/fields/items/anyOf/14/properties/isRead/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err519];}else{vErrors.push(err519);}errors++;}}if(data14.readonly!==undefined){if(typeof data14.readonly!=="boolean"){const err520={instancePath:instancePath+"/fields/"+i2+"/readonly",schemaPath:"#/properties/fields/items/anyOf/14/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err520];}else{vErrors.push(err520);}errors++;}}if(data14.clientScripts!==undefined){if(!Array.isArray(data14.clientScripts)){const err521={instancePath:instancePath+"/fields/"+i2+"/clientScripts",schemaPath:"#/properties/fields/items/anyOf/14/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err521];}else{vErrors.push(err521);}errors++;}}if(data14.maxLength!==undefined){if(!(typeof data14.maxLength=="number")){const err522={instancePath:instancePath+"/fields/"+i2+"/maxLength",schemaPath:"#/properties/fields/items/anyOf/14/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err522];}else{vErrors.push(err522);}errors++;}}if(data14.placeholder!==undefined){if(typeof data14.placeholder!=="string"){const err523={instancePath:instancePath+"/fields/"+i2+"/placeholder",schemaPath:"#/properties/fields/items/anyOf/14/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err523];}else{vErrors.push(err523);}errors++;}}if(data14.ePHI!==undefined){if(typeof data14.ePHI!=="boolean"){const err524={instancePath:instancePath+"/fields/"+i2+"/ePHI",schemaPath:"#/properties/fields/items/anyOf/14/properties/ePHI/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err524];}else{vErrors.push(err524);}errors++;}}}else{const err525={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/14/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err525];}else{vErrors.push(err525);}errors++;}var _valid0=_errs862===errors;valid7=valid7||_valid0;if(!valid7){const _errs922=errors;if(data14&&typeof data14=="object"&&!Array.isArray(data14)){if(data14.type===undefined){const err526={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/15/required",keyword:"required",params:{missingProperty:"type"},message:"must have required property '"+"type"+"'"};if(vErrors===null){vErrors=[err526];}else{vErrors.push(err526);}errors++;}if(data14.value===undefined){const err527={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/15/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err527];}else{vErrors.push(err527);}errors++;}if(data14.type!==undefined){if(typeof data14.type!=="string"){const err528={instancePath:instancePath+"/fields/"+i2+"/type",schemaPath:"#/properties/fields/items/anyOf/15/properties/type/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err528];}else{vErrors.push(err528);}errors++;}}if(data14.value!==undefined){if(typeof data14.value!=="string"){const err529={instancePath:instancePath+"/fields/"+i2+"/value",schemaPath:"#/properties/fields/items/anyOf/15/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err529];}else{vErrors.push(err529);}errors++;}}}else{const err530={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf/15/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err530];}else{vErrors.push(err530);}errors++;}var _valid0=_errs922===errors;valid7=valid7||_valid0;}}}}}}}}}}}}}}}if(!valid7){const err531={instancePath:instancePath+"/fields/"+i2,schemaPath:"#/properties/fields/items/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err531];}else{vErrors.push(err531);}errors++;}else{errors=_errs31;if(vErrors!==null){if(_errs31){vErrors.length=_errs31;}else{vErrors=null;}}}}}else{const err532={instancePath:instancePath+"/fields",schemaPath:"#/properties/fields/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err532];}else{vErrors.push(err532);}errors++;}}}else{const err533={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err533];}else{vErrors.push(err533);}errors++;}validate54.errors=vErrors;return errors===0;}exports.cc_select=validate55;const schema56={"type":"object","properties":{"id":{"type":"string"},"options":{"type":"array","items":{"type":"object","properties":{"value":{"type":"string"}},"required":["value"]}},"value":{"type":"string"},"placeholder":{"type":"string"},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"readonly":{"type":"boolean"},"actions":{"type":"array","items":{"type":"object"}},"clientScripts":{"type":"array"}},"required":[],"$id":"cc_select"};function validate55(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_select" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.id!==undefined){if(typeof data.id!=="string"){const err0={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data.options!==undefined){let data1=data.options;if(Array.isArray(data1)){const len0=data1.length;for(let i0=0;i0<len0;i0++){let data2=data1[i0];if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.value===undefined){const err1={instancePath:instancePath+"/options/"+i0,schemaPath:"#/properties/options/items/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data2.value!==undefined){if(typeof data2.value!=="string"){const err2={instancePath:instancePath+"/options/"+i0+"/value",schemaPath:"#/properties/options/items/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/options/"+i0,schemaPath:"#/properties/options/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}}else{const err4={instancePath:instancePath+"/options",schemaPath:"#/properties/options/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.value!==undefined){if(typeof data.value!=="string"){const err5={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data.placeholder!==undefined){if(typeof data.placeholder!=="string"){const err6={instancePath:instancePath+"/placeholder",schemaPath:"#/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err7={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err8={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err9={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.actions!==undefined){let data9=data.actions;if(Array.isArray(data9)){const len1=data9.length;for(let i1=0;i1<len1;i1++){let data10=data9[i1];if(!(data10&&typeof data10=="object"&&!Array.isArray(data10))){const err10={instancePath:instancePath+"/actions/"+i1,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}}else{const err11={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err12={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}}else{const err13={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}validate55.errors=vErrors;return errors===0;}exports.cc_slot=validate56;const schema57={"type":"object","properties":{"slot":{"type":"array","minItems":0,"items":{"type":"object","properties":{"type":{"type":"string"},"properties":{"type":"object"}},"required":["type","properties"]}}},"required":["slot"],"$id":"cc_slot"};function validate56(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_slot" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.slot===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"slot"},message:"must have required property '"+"slot"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.slot!==undefined){let data0=data.slot;if(Array.isArray(data0)){if(data0.length<0){const err1={instancePath:instancePath+"/slot",schemaPath:"#/properties/slot/minItems",keyword:"minItems",params:{limit:0},message:"must NOT have fewer than 0 items"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}const len0=data0.length;for(let i0=0;i0<len0;i0++){let data1=data0[i0];if(data1&&typeof data1=="object"&&!Array.isArray(data1)){if(data1.type===undefined){const err2={instancePath:instancePath+"/slot/"+i0,schemaPath:"#/properties/slot/items/required",keyword:"required",params:{missingProperty:"type"},message:"must have required property '"+"type"+"'"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}if(data1.properties===undefined){const err3={instancePath:instancePath+"/slot/"+i0,schemaPath:"#/properties/slot/items/required",keyword:"required",params:{missingProperty:"properties"},message:"must have required property '"+"properties"+"'"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}if(data1.type!==undefined){if(typeof data1.type!=="string"){const err4={instancePath:instancePath+"/slot/"+i0+"/type",schemaPath:"#/properties/slot/items/properties/type/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data1.properties!==undefined){let data3=data1.properties;if(!(data3&&typeof data3=="object"&&!Array.isArray(data3))){const err5={instancePath:instancePath+"/slot/"+i0+"/properties",schemaPath:"#/properties/slot/items/properties/properties/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}}else{const err6={instancePath:instancePath+"/slot/"+i0,schemaPath:"#/properties/slot/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}}else{const err7={instancePath:instancePath+"/slot",schemaPath:"#/properties/slot/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}}else{const err8={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}validate56.errors=vErrors;return errors===0;}exports["cc_sort-dropdown"]=validate57;const schema58={"type":"object","properties":{"options":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"label":{"type":"string"}},"required":["name","label"]}},"selectedOption":{"type":"object","properties":{"name":{"type":"string"},"label":{"type":"string"},"order":{"type":"string","enum":["none","ascending","descending"]}},"required":["name","label","order"]},"taggedOption":{"type":"string"},"optionTagLabel":{"type":"string"},"dropdownTooltip":{"type":"string"},"iconTooltip":{"type":"string"},"hasSearch":{"type":"boolean"},"searchPlaceholder":{"type":"string"},"footerButtonLabel":{"type":"string"},"emptyListMessage":{"type":"string"},"isLoading":{"type":"boolean"},"isResetDisabled":{"type":"boolean"}},"required":["options","selectedOption"],"$id":"cc_sort-dropdown"};function validate57(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_sort-dropdown" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.options===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"options"},message:"must have required property '"+"options"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.selectedOption===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"selectedOption"},message:"must have required property '"+"selectedOption"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.options!==undefined){let data0=data.options;if(Array.isArray(data0)){const len0=data0.length;for(let i0=0;i0<len0;i0++){let data1=data0[i0];if(data1&&typeof data1=="object"&&!Array.isArray(data1)){if(data1.name===undefined){const err2={instancePath:instancePath+"/options/"+i0,schemaPath:"#/properties/options/items/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}if(data1.label===undefined){const err3={instancePath:instancePath+"/options/"+i0,schemaPath:"#/properties/options/items/required",keyword:"required",params:{missingProperty:"label"},message:"must have required property '"+"label"+"'"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}if(data1.name!==undefined){if(typeof data1.name!=="string"){const err4={instancePath:instancePath+"/options/"+i0+"/name",schemaPath:"#/properties/options/items/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data1.label!==undefined){if(typeof data1.label!=="string"){const err5={instancePath:instancePath+"/options/"+i0+"/label",schemaPath:"#/properties/options/items/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}}else{const err6={instancePath:instancePath+"/options/"+i0,schemaPath:"#/properties/options/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}}else{const err7={instancePath:instancePath+"/options",schemaPath:"#/properties/options/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data.selectedOption!==undefined){let data4=data.selectedOption;if(data4&&typeof data4=="object"&&!Array.isArray(data4)){if(data4.name===undefined){const err8={instancePath:instancePath+"/selectedOption",schemaPath:"#/properties/selectedOption/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}if(data4.label===undefined){const err9={instancePath:instancePath+"/selectedOption",schemaPath:"#/properties/selectedOption/required",keyword:"required",params:{missingProperty:"label"},message:"must have required property '"+"label"+"'"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}if(data4.order===undefined){const err10={instancePath:instancePath+"/selectedOption",schemaPath:"#/properties/selectedOption/required",keyword:"required",params:{missingProperty:"order"},message:"must have required property '"+"order"+"'"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}if(data4.name!==undefined){if(typeof data4.name!=="string"){const err11={instancePath:instancePath+"/selectedOption/name",schemaPath:"#/properties/selectedOption/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data4.label!==undefined){if(typeof data4.label!=="string"){const err12={instancePath:instancePath+"/selectedOption/label",schemaPath:"#/properties/selectedOption/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data4.order!==undefined){let data7=data4.order;if(typeof data7!=="string"){const err13={instancePath:instancePath+"/selectedOption/order",schemaPath:"#/properties/selectedOption/properties/order/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}if(!(data7==="none"||data7==="ascending"||data7==="descending")){const err14={instancePath:instancePath+"/selectedOption/order",schemaPath:"#/properties/selectedOption/properties/order/enum",keyword:"enum",params:{allowedValues:schema58.properties.selectedOption.properties.order.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}}else{const err15={instancePath:instancePath+"/selectedOption",schemaPath:"#/properties/selectedOption/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.taggedOption!==undefined){if(typeof data.taggedOption!=="string"){const err16={instancePath:instancePath+"/taggedOption",schemaPath:"#/properties/taggedOption/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.optionTagLabel!==undefined){if(typeof data.optionTagLabel!=="string"){const err17={instancePath:instancePath+"/optionTagLabel",schemaPath:"#/properties/optionTagLabel/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.dropdownTooltip!==undefined){if(typeof data.dropdownTooltip!=="string"){const err18={instancePath:instancePath+"/dropdownTooltip",schemaPath:"#/properties/dropdownTooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.iconTooltip!==undefined){if(typeof data.iconTooltip!=="string"){const err19={instancePath:instancePath+"/iconTooltip",schemaPath:"#/properties/iconTooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.hasSearch!==undefined){if(typeof data.hasSearch!=="boolean"){const err20={instancePath:instancePath+"/hasSearch",schemaPath:"#/properties/hasSearch/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.searchPlaceholder!==undefined){if(typeof data.searchPlaceholder!=="string"){const err21={instancePath:instancePath+"/searchPlaceholder",schemaPath:"#/properties/searchPlaceholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}if(data.footerButtonLabel!==undefined){if(typeof data.footerButtonLabel!=="string"){const err22={instancePath:instancePath+"/footerButtonLabel",schemaPath:"#/properties/footerButtonLabel/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.emptyListMessage!==undefined){if(typeof data.emptyListMessage!=="string"){const err23={instancePath:instancePath+"/emptyListMessage",schemaPath:"#/properties/emptyListMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}if(data.isLoading!==undefined){if(typeof data.isLoading!=="boolean"){const err24={instancePath:instancePath+"/isLoading",schemaPath:"#/properties/isLoading/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data.isResetDisabled!==undefined){if(typeof data.isResetDisabled!=="boolean"){const err25={instancePath:instancePath+"/isResetDisabled",schemaPath:"#/properties/isResetDisabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}}}else{const err26={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}validate57.errors=vErrors;return errors===0;}exports.cc_switch=validate58;const schema59={"type":"object","properties":{"checked":{"type":"boolean"},"disabled":{"type":"boolean"},"size":{"type":"string","enum":["small","medium","large","xlarge"]},"tooltip":{"type":"string"}},"required":[],"$id":"cc_switch"};function validate58(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_switch" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.checked!==undefined){if(typeof data.checked!=="boolean"){const err0={instancePath:instancePath+"/checked",schemaPath:"#/properties/checked/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err1={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.size!==undefined){let data2=data.size;if(typeof data2!=="string"){const err2={instancePath:instancePath+"/size",schemaPath:"#/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}if(!(data2==="small"||data2==="medium"||data2==="large"||data2==="xlarge")){const err3={instancePath:instancePath+"/size",schemaPath:"#/properties/size/enum",keyword:"enum",params:{allowedValues:schema59.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err4={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}}else{const err5={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}validate58.errors=vErrors;return errors===0;}exports["cc_table-column-chooser"]=validate59;const schema60={"type":"object","properties":{"textOverflowConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"},"mode":{"type":"string","enum":["clip","wrap"]}}},"options":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"value":{"type":"string"},"checked":{"type":"boolean"},"disabled":{"type":"boolean"},"locked":{"type":"boolean"}},"required":["id","value","checked"]}},"hasSearch":{"type":"boolean"},"errorMessage":{"type":"string"},"saveLabel":{"type":"string"},"cancelLabel":{"type":"string"},"tooltip":{"type":"string"},"heading":{"type":"string"},"infoText":{"type":"string"},"searchString":{"type":"string"},"searchPlaceholder":{"type":"string"},"emptyMessage":{"type":"string"}},"required":[],"$id":"cc_table-column-chooser"};function validate59(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_table-column-chooser" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.textOverflowConfig!==undefined){let data0=data.textOverflowConfig;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.isEnabled!==undefined){if(typeof data0.isEnabled!=="boolean"){const err0={instancePath:instancePath+"/textOverflowConfig/isEnabled",schemaPath:"#/properties/textOverflowConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data0.mode!==undefined){let data2=data0.mode;if(typeof data2!=="string"){const err1={instancePath:instancePath+"/textOverflowConfig/mode",schemaPath:"#/properties/textOverflowConfig/properties/mode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(!(data2==="clip"||data2==="wrap")){const err2={instancePath:instancePath+"/textOverflowConfig/mode",schemaPath:"#/properties/textOverflowConfig/properties/mode/enum",keyword:"enum",params:{allowedValues:schema60.properties.textOverflowConfig.properties.mode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/textOverflowConfig",schemaPath:"#/properties/textOverflowConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.options!==undefined){let data3=data.options;if(Array.isArray(data3)){const len0=data3.length;for(let i0=0;i0<len0;i0++){let data4=data3[i0];if(data4&&typeof data4=="object"&&!Array.isArray(data4)){if(data4.id===undefined){const err4={instancePath:instancePath+"/options/"+i0,schemaPath:"#/properties/options/items/required",keyword:"required",params:{missingProperty:"id"},message:"must have required property '"+"id"+"'"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}if(data4.value===undefined){const err5={instancePath:instancePath+"/options/"+i0,schemaPath:"#/properties/options/items/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}if(data4.checked===undefined){const err6={instancePath:instancePath+"/options/"+i0,schemaPath:"#/properties/options/items/required",keyword:"required",params:{missingProperty:"checked"},message:"must have required property '"+"checked"+"'"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(data4.id!==undefined){if(typeof data4.id!=="string"){const err7={instancePath:instancePath+"/options/"+i0+"/id",schemaPath:"#/properties/options/items/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data4.value!==undefined){if(typeof data4.value!=="string"){const err8={instancePath:instancePath+"/options/"+i0+"/value",schemaPath:"#/properties/options/items/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data4.checked!==undefined){if(typeof data4.checked!=="boolean"){const err9={instancePath:instancePath+"/options/"+i0+"/checked",schemaPath:"#/properties/options/items/properties/checked/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data4.disabled!==undefined){if(typeof data4.disabled!=="boolean"){const err10={instancePath:instancePath+"/options/"+i0+"/disabled",schemaPath:"#/properties/options/items/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data4.locked!==undefined){if(typeof data4.locked!=="boolean"){const err11={instancePath:instancePath+"/options/"+i0+"/locked",schemaPath:"#/properties/options/items/properties/locked/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}}else{const err12={instancePath:instancePath+"/options/"+i0,schemaPath:"#/properties/options/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}}else{const err13={instancePath:instancePath+"/options",schemaPath:"#/properties/options/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.hasSearch!==undefined){if(typeof data.hasSearch!=="boolean"){const err14={instancePath:instancePath+"/hasSearch",schemaPath:"#/properties/hasSearch/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.errorMessage!==undefined){if(typeof data.errorMessage!=="string"){const err15={instancePath:instancePath+"/errorMessage",schemaPath:"#/properties/errorMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.saveLabel!==undefined){if(typeof data.saveLabel!=="string"){const err16={instancePath:instancePath+"/saveLabel",schemaPath:"#/properties/saveLabel/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.cancelLabel!==undefined){if(typeof data.cancelLabel!=="string"){const err17={instancePath:instancePath+"/cancelLabel",schemaPath:"#/properties/cancelLabel/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err18={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.heading!==undefined){if(typeof data.heading!=="string"){const err19={instancePath:instancePath+"/heading",schemaPath:"#/properties/heading/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.infoText!==undefined){if(typeof data.infoText!=="string"){const err20={instancePath:instancePath+"/infoText",schemaPath:"#/properties/infoText/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.searchString!==undefined){if(typeof data.searchString!=="string"){const err21={instancePath:instancePath+"/searchString",schemaPath:"#/properties/searchString/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}if(data.searchPlaceholder!==undefined){if(typeof data.searchPlaceholder!=="string"){const err22={instancePath:instancePath+"/searchPlaceholder",schemaPath:"#/properties/searchPlaceholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.emptyMessage!==undefined){if(typeof data.emptyMessage!=="string"){const err23={instancePath:instancePath+"/emptyMessage",schemaPath:"#/properties/emptyMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}}else{const err24={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}validate59.errors=vErrors;return errors===0;}exports["cc_table-column-filter"]=validate60;const schema61={"type":"object","properties":{"isMultiSelect":{"type":"boolean"},"options":{"type":"array","items":{"type":"object","properties":{"value":{"type":"string"},"id":{"type":"string"}},"required":["value","id"]}},"selectedOptions":{"anyOf":[{"type":"array","items":{"type":"object","properties":{"value":{"type":"string"},"id":{"type":"string"}}}},{"type":"object","properties":{"value":{"type":"string"},"id":{"type":"string"}}}]},"heading":{"type":"string"},"hasClearButton":{"type":"boolean"},"hasSearch":{"type":"boolean"},"searchPlaceholder":{"type":"string"},"clearFilterLabel":{"type":"string"},"optionTagLabel":{"type":"string"},"taggedOption":{"type":"object","properties":{"value":{"type":"string"},"id":{"type":"string"}}}},"required":[],"$id":"cc_table-column-filter"};function validate60(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_table-column-filter" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.isMultiSelect!==undefined){if(typeof data.isMultiSelect!=="boolean"){const err0={instancePath:instancePath+"/isMultiSelect",schemaPath:"#/properties/isMultiSelect/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data.options!==undefined){let data1=data.options;if(Array.isArray(data1)){const len0=data1.length;for(let i0=0;i0<len0;i0++){let data2=data1[i0];if(data2&&typeof data2=="object"&&!Array.isArray(data2)){if(data2.value===undefined){const err1={instancePath:instancePath+"/options/"+i0,schemaPath:"#/properties/options/items/required",keyword:"required",params:{missingProperty:"value"},message:"must have required property '"+"value"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data2.id===undefined){const err2={instancePath:instancePath+"/options/"+i0,schemaPath:"#/properties/options/items/required",keyword:"required",params:{missingProperty:"id"},message:"must have required property '"+"id"+"'"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}if(data2.value!==undefined){if(typeof data2.value!=="string"){const err3={instancePath:instancePath+"/options/"+i0+"/value",schemaPath:"#/properties/options/items/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data2.id!==undefined){if(typeof data2.id!=="string"){const err4={instancePath:instancePath+"/options/"+i0+"/id",schemaPath:"#/properties/options/items/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}}else{const err5={instancePath:instancePath+"/options/"+i0,schemaPath:"#/properties/options/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}}else{const err6={instancePath:instancePath+"/options",schemaPath:"#/properties/options/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.selectedOptions!==undefined){let data5=data.selectedOptions;const _errs12=errors;let valid4=false;const _errs13=errors;if(Array.isArray(data5)){const len1=data5.length;for(let i1=0;i1<len1;i1++){let data6=data5[i1];if(data6&&typeof data6=="object"&&!Array.isArray(data6)){if(data6.value!==undefined){if(typeof data6.value!=="string"){const err7={instancePath:instancePath+"/selectedOptions/"+i1+"/value",schemaPath:"#/properties/selectedOptions/anyOf/0/items/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data6.id!==undefined){if(typeof data6.id!=="string"){const err8={instancePath:instancePath+"/selectedOptions/"+i1+"/id",schemaPath:"#/properties/selectedOptions/anyOf/0/items/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/selectedOptions/"+i1,schemaPath:"#/properties/selectedOptions/anyOf/0/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}}else{const err10={instancePath:instancePath+"/selectedOptions",schemaPath:"#/properties/selectedOptions/anyOf/0/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}var _valid0=_errs13===errors;valid4=valid4||_valid0;if(!valid4){const _errs21=errors;if(data5&&typeof data5=="object"&&!Array.isArray(data5)){if(data5.value!==undefined){if(typeof data5.value!=="string"){const err11={instancePath:instancePath+"/selectedOptions/value",schemaPath:"#/properties/selectedOptions/anyOf/1/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data5.id!==undefined){if(typeof data5.id!=="string"){const err12={instancePath:instancePath+"/selectedOptions/id",schemaPath:"#/properties/selectedOptions/anyOf/1/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}}else{const err13={instancePath:instancePath+"/selectedOptions",schemaPath:"#/properties/selectedOptions/anyOf/1/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}var _valid0=_errs21===errors;valid4=valid4||_valid0;}if(!valid4){const err14={instancePath:instancePath+"/selectedOptions",schemaPath:"#/properties/selectedOptions/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}else{errors=_errs12;if(vErrors!==null){if(_errs12){vErrors.length=_errs12;}else{vErrors=null;}}}}if(data.heading!==undefined){if(typeof data.heading!=="string"){const err15={instancePath:instancePath+"/heading",schemaPath:"#/properties/heading/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.hasClearButton!==undefined){if(typeof data.hasClearButton!=="boolean"){const err16={instancePath:instancePath+"/hasClearButton",schemaPath:"#/properties/hasClearButton/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.hasSearch!==undefined){if(typeof data.hasSearch!=="boolean"){const err17={instancePath:instancePath+"/hasSearch",schemaPath:"#/properties/hasSearch/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.searchPlaceholder!==undefined){if(typeof data.searchPlaceholder!=="string"){const err18={instancePath:instancePath+"/searchPlaceholder",schemaPath:"#/properties/searchPlaceholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.clearFilterLabel!==undefined){if(typeof data.clearFilterLabel!=="string"){const err19={instancePath:instancePath+"/clearFilterLabel",schemaPath:"#/properties/clearFilterLabel/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.optionTagLabel!==undefined){if(typeof data.optionTagLabel!=="string"){const err20={instancePath:instancePath+"/optionTagLabel",schemaPath:"#/properties/optionTagLabel/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.taggedOption!==undefined){let data17=data.taggedOption;if(data17&&typeof data17=="object"&&!Array.isArray(data17)){if(data17.value!==undefined){if(typeof data17.value!=="string"){const err21={instancePath:instancePath+"/taggedOption/value",schemaPath:"#/properties/taggedOption/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}if(data17.id!==undefined){if(typeof data17.id!=="string"){const err22={instancePath:instancePath+"/taggedOption/id",schemaPath:"#/properties/taggedOption/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}}else{const err23={instancePath:instancePath+"/taggedOption",schemaPath:"#/properties/taggedOption/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}}else{const err24={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}validate60.errors=vErrors;return errors===0;}exports["cc_table-column-sort"]=validate61;const schema62={"type":"object","properties":{"value":{"type":"string","enum":["none","ascending","descending"]},"ascendingLabel":{"type":"string"},"descendingLabel":{"type":"string"}},"required":[],"$id":"cc_table-column-sort"};function validate61(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_table-column-sort" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.value!==undefined){let data0=data.value;if(typeof data0!=="string"){const err0={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(!(data0==="none"||data0==="ascending"||data0==="descending")){const err1={instancePath:instancePath+"/value",schemaPath:"#/properties/value/enum",keyword:"enum",params:{allowedValues:schema62.properties.value.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.ascendingLabel!==undefined){if(typeof data.ascendingLabel!=="string"){const err2={instancePath:instancePath+"/ascendingLabel",schemaPath:"#/properties/ascendingLabel/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.descendingLabel!==undefined){if(typeof data.descendingLabel!=="string"){const err3={instancePath:instancePath+"/descendingLabel",schemaPath:"#/properties/descendingLabel/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}}else{const err4={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}validate61.errors=vErrors;return errors===0;}exports["cc_table-connected"]=validate62;const schema63={"type":"object","properties":{"preferences":{"type":"object","properties":{"rowActions":{"type":"object","additionalProperties":{"width":{"type":"string"}}},"fields":{"type":"object","additionalProperties":{"type":"object","properties":{"initialWidth":{"type":"number"},"currencyLocale":{"type":"string"},"currencySymbol":{"type":"string"}}}},"autoColumnSizing":{"type":"boolean"}}},"selectionConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"},"maxSelectionCount":{"type":"number"},"limitExceedAlertMessage":{"type":"string"},"isSelectAllEnabled":{"type":"boolean"}}},"keyboardControlsConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"}}},"nameFieldsConfig":{"type":"object"},"textOverflowConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"},"mode":{"type":"string","enum":["clip","wrap"]}}},"recordReadStatusConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"}}},"floatPaginationConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"}}},"reOrderConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"}}},"componentMapping":{"type":"object","properties":{"fields":{"type":"object"},"rowActionsComponentName":{"type":"string"},"emptyState":{"type":"string"}}},"moduleName":{"type":"string"}},"required":["moduleName"],"$id":"cc_table-connected"};function validate62(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_table-connected" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.moduleName===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"moduleName"},message:"must have required property '"+"moduleName"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.preferences!==undefined){let data0=data.preferences;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.rowActions!==undefined){let data1=data0.rowActions;if(data1&&typeof data1=="object"&&!Array.isArray(data1)){}else{const err1={instancePath:instancePath+"/preferences/rowActions",schemaPath:"#/properties/preferences/properties/rowActions/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data0.fields!==undefined){let data2=data0.fields;if(data2&&typeof data2=="object"&&!Array.isArray(data2)){for(const key0 in data2){let data3=data2[key0];if(data3&&typeof data3=="object"&&!Array.isArray(data3)){if(data3.initialWidth!==undefined){if(!(typeof data3.initialWidth=="number")){const err2={instancePath:instancePath+"/preferences/fields/"+key0.replace(/~/g,"~0").replace(/\//g,"~1")+"/initialWidth",schemaPath:"#/properties/preferences/properties/fields/additionalProperties/properties/initialWidth/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data3.currencyLocale!==undefined){if(typeof data3.currencyLocale!=="string"){const err3={instancePath:instancePath+"/preferences/fields/"+key0.replace(/~/g,"~0").replace(/\//g,"~1")+"/currencyLocale",schemaPath:"#/properties/preferences/properties/fields/additionalProperties/properties/currencyLocale/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data3.currencySymbol!==undefined){if(typeof data3.currencySymbol!=="string"){const err4={instancePath:instancePath+"/preferences/fields/"+key0.replace(/~/g,"~0").replace(/\//g,"~1")+"/currencySymbol",schemaPath:"#/properties/preferences/properties/fields/additionalProperties/properties/currencySymbol/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}}else{const err5={instancePath:instancePath+"/preferences/fields/"+key0.replace(/~/g,"~0").replace(/\//g,"~1"),schemaPath:"#/properties/preferences/properties/fields/additionalProperties/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}}else{const err6={instancePath:instancePath+"/preferences/fields",schemaPath:"#/properties/preferences/properties/fields/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data0.autoColumnSizing!==undefined){if(typeof data0.autoColumnSizing!=="boolean"){const err7={instancePath:instancePath+"/preferences/autoColumnSizing",schemaPath:"#/properties/preferences/properties/autoColumnSizing/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}}else{const err8={instancePath:instancePath+"/preferences",schemaPath:"#/properties/preferences/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data.selectionConfig!==undefined){let data8=data.selectionConfig;if(data8&&typeof data8=="object"&&!Array.isArray(data8)){if(data8.isEnabled!==undefined){if(typeof data8.isEnabled!=="boolean"){const err9={instancePath:instancePath+"/selectionConfig/isEnabled",schemaPath:"#/properties/selectionConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data8.maxSelectionCount!==undefined){if(!(typeof data8.maxSelectionCount=="number")){const err10={instancePath:instancePath+"/selectionConfig/maxSelectionCount",schemaPath:"#/properties/selectionConfig/properties/maxSelectionCount/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data8.limitExceedAlertMessage!==undefined){if(typeof data8.limitExceedAlertMessage!=="string"){const err11={instancePath:instancePath+"/selectionConfig/limitExceedAlertMessage",schemaPath:"#/properties/selectionConfig/properties/limitExceedAlertMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data8.isSelectAllEnabled!==undefined){if(typeof data8.isSelectAllEnabled!=="boolean"){const err12={instancePath:instancePath+"/selectionConfig/isSelectAllEnabled",schemaPath:"#/properties/selectionConfig/properties/isSelectAllEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}}else{const err13={instancePath:instancePath+"/selectionConfig",schemaPath:"#/properties/selectionConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.keyboardControlsConfig!==undefined){let data13=data.keyboardControlsConfig;if(data13&&typeof data13=="object"&&!Array.isArray(data13)){if(data13.isEnabled!==undefined){if(typeof data13.isEnabled!=="boolean"){const err14={instancePath:instancePath+"/keyboardControlsConfig/isEnabled",schemaPath:"#/properties/keyboardControlsConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}}else{const err15={instancePath:instancePath+"/keyboardControlsConfig",schemaPath:"#/properties/keyboardControlsConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.nameFieldsConfig!==undefined){let data15=data.nameFieldsConfig;if(!(data15&&typeof data15=="object"&&!Array.isArray(data15))){const err16={instancePath:instancePath+"/nameFieldsConfig",schemaPath:"#/properties/nameFieldsConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.textOverflowConfig!==undefined){let data16=data.textOverflowConfig;if(data16&&typeof data16=="object"&&!Array.isArray(data16)){if(data16.isEnabled!==undefined){if(typeof data16.isEnabled!=="boolean"){const err17={instancePath:instancePath+"/textOverflowConfig/isEnabled",schemaPath:"#/properties/textOverflowConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data16.mode!==undefined){let data18=data16.mode;if(typeof data18!=="string"){const err18={instancePath:instancePath+"/textOverflowConfig/mode",schemaPath:"#/properties/textOverflowConfig/properties/mode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}if(!(data18==="clip"||data18==="wrap")){const err19={instancePath:instancePath+"/textOverflowConfig/mode",schemaPath:"#/properties/textOverflowConfig/properties/mode/enum",keyword:"enum",params:{allowedValues:schema63.properties.textOverflowConfig.properties.mode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}}else{const err20={instancePath:instancePath+"/textOverflowConfig",schemaPath:"#/properties/textOverflowConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.recordReadStatusConfig!==undefined){let data19=data.recordReadStatusConfig;if(data19&&typeof data19=="object"&&!Array.isArray(data19)){if(data19.isEnabled!==undefined){if(typeof data19.isEnabled!=="boolean"){const err21={instancePath:instancePath+"/recordReadStatusConfig/isEnabled",schemaPath:"#/properties/recordReadStatusConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath:instancePath+"/recordReadStatusConfig",schemaPath:"#/properties/recordReadStatusConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.floatPaginationConfig!==undefined){let data21=data.floatPaginationConfig;if(data21&&typeof data21=="object"&&!Array.isArray(data21)){if(data21.isEnabled!==undefined){if(typeof data21.isEnabled!=="boolean"){const err23={instancePath:instancePath+"/floatPaginationConfig/isEnabled",schemaPath:"#/properties/floatPaginationConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}}else{const err24={instancePath:instancePath+"/floatPaginationConfig",schemaPath:"#/properties/floatPaginationConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}if(data.reOrderConfig!==undefined){let data23=data.reOrderConfig;if(data23&&typeof data23=="object"&&!Array.isArray(data23)){if(data23.isEnabled!==undefined){if(typeof data23.isEnabled!=="boolean"){const err25={instancePath:instancePath+"/reOrderConfig/isEnabled",schemaPath:"#/properties/reOrderConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}}}else{const err26={instancePath:instancePath+"/reOrderConfig",schemaPath:"#/properties/reOrderConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.componentMapping!==undefined){let data25=data.componentMapping;if(data25&&typeof data25=="object"&&!Array.isArray(data25)){if(data25.fields!==undefined){let data26=data25.fields;if(!(data26&&typeof data26=="object"&&!Array.isArray(data26))){const err27={instancePath:instancePath+"/componentMapping/fields",schemaPath:"#/properties/componentMapping/properties/fields/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}if(data25.rowActionsComponentName!==undefined){if(typeof data25.rowActionsComponentName!=="string"){const err28={instancePath:instancePath+"/componentMapping/rowActionsComponentName",schemaPath:"#/properties/componentMapping/properties/rowActionsComponentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data25.emptyState!==undefined){if(typeof data25.emptyState!=="string"){const err29={instancePath:instancePath+"/componentMapping/emptyState",schemaPath:"#/properties/componentMapping/properties/emptyState/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}}else{const err30={instancePath:instancePath+"/componentMapping",schemaPath:"#/properties/componentMapping/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}}if(data.moduleName!==undefined){if(typeof data.moduleName!=="string"){const err31={instancePath:instancePath+"/moduleName",schemaPath:"#/properties/moduleName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err31];}else{vErrors.push(err31);}errors++;}}}else{const err32={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err32];}else{vErrors.push(err32);}errors++;}validate62.errors=vErrors;return errors===0;}exports["cc_table-list"]=validate63;const schema64={"type":"object","properties":{"isReOrderLoading":{"type":"boolean"},"isLoading":{"type":"boolean"},"isError":{"type":"boolean"},"focussedRow":{"type":"number"},"sortBy":{"type":"object","properties":{"order":{"type":"string","enum":["none","ascending","descending"]},"name":{"type":"string"}}},"resizerState":{"type":"object","properties":{"isEnabled":{"type":"boolean"},"currentlyResizingColumn":{"type":"string"},"isCurrentlyResizing":{"type":"boolean"},"extraWidth":{"type":"number"},"initialPosition":{"type":"number"},"resizedPosition":{"type":"number"},"tooltip":{"type":"string"}}},"emptyStateUiType":{"type":"string"},"rowActionsConfig":{"type":"object","properties":{"hasActions":{"type":"boolean"},"columnWidth":{"type":"number"}}},"isFlexibleColumns":{"type":"boolean"},"rowCursor":{"type":"string","enum":["default","pointer","not-allowed"]},"data":{"type":"object","properties":{"headers":{"type":"array","minIems":0,"items":{"$ref":"#/definitions/HeaderMeta"}},"rows":{"type":"array","minIems":0,"items":{"type":"object","properties":{"id":{"type":"string"},"columns":{"type":"array"},"rowActionLocation":{"$ref":"#/definitions/ActionLocation"},"isSelectable":{"type":"boolean"},"isSelected":{"type":"boolean"},"selectionTooltip":{"type":"string"},"isSelectAllEnabled":{"type":"boolean"}},"required":["id","columns"]}}},"required":["headers","rows"]},"selection":{"type":"object","properties":{"selected":{"type":"array","items":{"type":"string"}},"actions":{"type":"array","minItems":0},"hasAllSelected":{"type":"boolean"}},"required":["selected","hasAllSelected","actions"]},"textOverflowConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"},"mode":{"type":"string","enum":["clip","wrap"]}}},"floatPaginationConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"},"scrollCount":{"type":"number"},"totalCount":{"type":"number"},"scrollToUpTooltip":{"type":"string"},"isTopReached":{"type":"boolean"},"isBottomReached":{"type":"boolean"},"scrollToDownTooltip":{"type":"string"}}},"keyboardControlsConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"}}},"reOrderConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"}}},"selectionConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"},"maxSelectionCount":{"type":"number"},"limitExceedAlertMessage":{"type":"string"},"isSelectAllEnabled":{"type":"boolean"}}}},"required":[],"definitions":{"HeaderMeta":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"text":{"type":"string"},"width":{"type":"number"},"alignment":{"type":"string","enum":["left","center","right"]},"sortOrder":{"type":"string","enum":["none","ascending","descending"]}},"required":["id","name","text"]},"ActionLocation":{"renderComponentType":"object","properties":{"type":{"type":"string"},"actions":{"type":"array","minItems":0}},"required":["actions"]}},"$id":"cc_table-list"};const schema65={"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"text":{"type":"string"},"width":{"type":"number"},"alignment":{"type":"string","enum":["left","center","right"]},"sortOrder":{"type":"string","enum":["none","ascending","descending"]}},"required":["id","name","text"]};const schema66={"renderComponentType":"object","properties":{"type":{"type":"string"},"actions":{"type":"array","minItems":0}},"required":["actions"]};function validate63(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_table-list" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.isReOrderLoading!==undefined){if(typeof data.isReOrderLoading!=="boolean"){const err0={instancePath:instancePath+"/isReOrderLoading",schemaPath:"#/properties/isReOrderLoading/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data.isLoading!==undefined){if(typeof data.isLoading!=="boolean"){const err1={instancePath:instancePath+"/isLoading",schemaPath:"#/properties/isLoading/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.isError!==undefined){if(typeof data.isError!=="boolean"){const err2={instancePath:instancePath+"/isError",schemaPath:"#/properties/isError/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.focussedRow!==undefined){if(!(typeof data.focussedRow=="number")){const err3={instancePath:instancePath+"/focussedRow",schemaPath:"#/properties/focussedRow/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.sortBy!==undefined){let data4=data.sortBy;if(data4&&typeof data4=="object"&&!Array.isArray(data4)){if(data4.order!==undefined){let data5=data4.order;if(typeof data5!=="string"){const err4={instancePath:instancePath+"/sortBy/order",schemaPath:"#/properties/sortBy/properties/order/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}if(!(data5==="none"||data5==="ascending"||data5==="descending")){const err5={instancePath:instancePath+"/sortBy/order",schemaPath:"#/properties/sortBy/properties/order/enum",keyword:"enum",params:{allowedValues:schema64.properties.sortBy.properties.order.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data4.name!==undefined){if(typeof data4.name!=="string"){const err6={instancePath:instancePath+"/sortBy/name",schemaPath:"#/properties/sortBy/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}}else{const err7={instancePath:instancePath+"/sortBy",schemaPath:"#/properties/sortBy/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data.resizerState!==undefined){let data7=data.resizerState;if(data7&&typeof data7=="object"&&!Array.isArray(data7)){if(data7.isEnabled!==undefined){if(typeof data7.isEnabled!=="boolean"){const err8={instancePath:instancePath+"/resizerState/isEnabled",schemaPath:"#/properties/resizerState/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data7.currentlyResizingColumn!==undefined){if(typeof data7.currentlyResizingColumn!=="string"){const err9={instancePath:instancePath+"/resizerState/currentlyResizingColumn",schemaPath:"#/properties/resizerState/properties/currentlyResizingColumn/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data7.isCurrentlyResizing!==undefined){if(typeof data7.isCurrentlyResizing!=="boolean"){const err10={instancePath:instancePath+"/resizerState/isCurrentlyResizing",schemaPath:"#/properties/resizerState/properties/isCurrentlyResizing/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data7.extraWidth!==undefined){if(!(typeof data7.extraWidth=="number")){const err11={instancePath:instancePath+"/resizerState/extraWidth",schemaPath:"#/properties/resizerState/properties/extraWidth/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data7.initialPosition!==undefined){if(!(typeof data7.initialPosition=="number")){const err12={instancePath:instancePath+"/resizerState/initialPosition",schemaPath:"#/properties/resizerState/properties/initialPosition/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data7.resizedPosition!==undefined){if(!(typeof data7.resizedPosition=="number")){const err13={instancePath:instancePath+"/resizerState/resizedPosition",schemaPath:"#/properties/resizerState/properties/resizedPosition/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data7.tooltip!==undefined){if(typeof data7.tooltip!=="string"){const err14={instancePath:instancePath+"/resizerState/tooltip",schemaPath:"#/properties/resizerState/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}}else{const err15={instancePath:instancePath+"/resizerState",schemaPath:"#/properties/resizerState/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.emptyStateUiType!==undefined){if(typeof data.emptyStateUiType!=="string"){const err16={instancePath:instancePath+"/emptyStateUiType",schemaPath:"#/properties/emptyStateUiType/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.rowActionsConfig!==undefined){let data16=data.rowActionsConfig;if(data16&&typeof data16=="object"&&!Array.isArray(data16)){if(data16.hasActions!==undefined){if(typeof data16.hasActions!=="boolean"){const err17={instancePath:instancePath+"/rowActionsConfig/hasActions",schemaPath:"#/properties/rowActionsConfig/properties/hasActions/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data16.columnWidth!==undefined){if(!(typeof data16.columnWidth=="number")){const err18={instancePath:instancePath+"/rowActionsConfig/columnWidth",schemaPath:"#/properties/rowActionsConfig/properties/columnWidth/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}}else{const err19={instancePath:instancePath+"/rowActionsConfig",schemaPath:"#/properties/rowActionsConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.isFlexibleColumns!==undefined){if(typeof data.isFlexibleColumns!=="boolean"){const err20={instancePath:instancePath+"/isFlexibleColumns",schemaPath:"#/properties/isFlexibleColumns/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.rowCursor!==undefined){let data20=data.rowCursor;if(typeof data20!=="string"){const err21={instancePath:instancePath+"/rowCursor",schemaPath:"#/properties/rowCursor/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}if(!(data20==="default"||data20==="pointer"||data20==="not-allowed")){const err22={instancePath:instancePath+"/rowCursor",schemaPath:"#/properties/rowCursor/enum",keyword:"enum",params:{allowedValues:schema64.properties.rowCursor.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}}if(data.data!==undefined){let data21=data.data;if(data21&&typeof data21=="object"&&!Array.isArray(data21)){if(data21.headers===undefined){const err23={instancePath:instancePath+"/data",schemaPath:"#/properties/data/required",keyword:"required",params:{missingProperty:"headers"},message:"must have required property '"+"headers"+"'"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}if(data21.rows===undefined){const err24={instancePath:instancePath+"/data",schemaPath:"#/properties/data/required",keyword:"required",params:{missingProperty:"rows"},message:"must have required property '"+"rows"+"'"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}if(data21.headers!==undefined){let data22=data21.headers;if(Array.isArray(data22)){const len0=data22.length;for(let i0=0;i0<len0;i0++){let data23=data22[i0];if(data23&&typeof data23=="object"&&!Array.isArray(data23)){if(data23.id===undefined){const err25={instancePath:instancePath+"/data/headers/"+i0,schemaPath:"#/definitions/HeaderMeta/required",keyword:"required",params:{missingProperty:"id"},message:"must have required property '"+"id"+"'"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}if(data23.name===undefined){const err26={instancePath:instancePath+"/data/headers/"+i0,schemaPath:"#/definitions/HeaderMeta/required",keyword:"required",params:{missingProperty:"name"},message:"must have required property '"+"name"+"'"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}if(data23.text===undefined){const err27={instancePath:instancePath+"/data/headers/"+i0,schemaPath:"#/definitions/HeaderMeta/required",keyword:"required",params:{missingProperty:"text"},message:"must have required property '"+"text"+"'"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}if(data23.id!==undefined){if(typeof data23.id!=="string"){const err28={instancePath:instancePath+"/data/headers/"+i0+"/id",schemaPath:"#/definitions/HeaderMeta/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}}if(data23.name!==undefined){if(typeof data23.name!=="string"){const err29={instancePath:instancePath+"/data/headers/"+i0+"/name",schemaPath:"#/definitions/HeaderMeta/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err29];}else{vErrors.push(err29);}errors++;}}if(data23.text!==undefined){if(typeof data23.text!=="string"){const err30={instancePath:instancePath+"/data/headers/"+i0+"/text",schemaPath:"#/definitions/HeaderMeta/properties/text/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err30];}else{vErrors.push(err30);}errors++;}}if(data23.width!==undefined){if(!(typeof data23.width=="number")){const err31={instancePath:instancePath+"/data/headers/"+i0+"/width",schemaPath:"#/definitions/HeaderMeta/properties/width/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err31];}else{vErrors.push(err31);}errors++;}}if(data23.alignment!==undefined){let data28=data23.alignment;if(typeof data28!=="string"){const err32={instancePath:instancePath+"/data/headers/"+i0+"/alignment",schemaPath:"#/definitions/HeaderMeta/properties/alignment/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err32];}else{vErrors.push(err32);}errors++;}if(!(data28==="left"||data28==="center"||data28==="right")){const err33={instancePath:instancePath+"/data/headers/"+i0+"/alignment",schemaPath:"#/definitions/HeaderMeta/properties/alignment/enum",keyword:"enum",params:{allowedValues:schema65.properties.alignment.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err33];}else{vErrors.push(err33);}errors++;}}if(data23.sortOrder!==undefined){let data29=data23.sortOrder;if(typeof data29!=="string"){const err34={instancePath:instancePath+"/data/headers/"+i0+"/sortOrder",schemaPath:"#/definitions/HeaderMeta/properties/sortOrder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err34];}else{vErrors.push(err34);}errors++;}if(!(data29==="none"||data29==="ascending"||data29==="descending")){const err35={instancePath:instancePath+"/data/headers/"+i0+"/sortOrder",schemaPath:"#/definitions/HeaderMeta/properties/sortOrder/enum",keyword:"enum",params:{allowedValues:schema65.properties.sortOrder.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err35];}else{vErrors.push(err35);}errors++;}}}else{const err36={instancePath:instancePath+"/data/headers/"+i0,schemaPath:"#/definitions/HeaderMeta/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err36];}else{vErrors.push(err36);}errors++;}}}else{const err37={instancePath:instancePath+"/data/headers",schemaPath:"#/properties/data/properties/headers/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err37];}else{vErrors.push(err37);}errors++;}}if(data21.rows!==undefined){let data30=data21.rows;if(Array.isArray(data30)){const len1=data30.length;for(let i1=0;i1<len1;i1++){let data31=data30[i1];if(data31&&typeof data31=="object"&&!Array.isArray(data31)){if(data31.id===undefined){const err38={instancePath:instancePath+"/data/rows/"+i1,schemaPath:"#/properties/data/properties/rows/items/required",keyword:"required",params:{missingProperty:"id"},message:"must have required property '"+"id"+"'"};if(vErrors===null){vErrors=[err38];}else{vErrors.push(err38);}errors++;}if(data31.columns===undefined){const err39={instancePath:instancePath+"/data/rows/"+i1,schemaPath:"#/properties/data/properties/rows/items/required",keyword:"required",params:{missingProperty:"columns"},message:"must have required property '"+"columns"+"'"};if(vErrors===null){vErrors=[err39];}else{vErrors.push(err39);}errors++;}if(data31.id!==undefined){if(typeof data31.id!=="string"){const err40={instancePath:instancePath+"/data/rows/"+i1+"/id",schemaPath:"#/properties/data/properties/rows/items/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err40];}else{vErrors.push(err40);}errors++;}}if(data31.columns!==undefined){if(!Array.isArray(data31.columns)){const err41={instancePath:instancePath+"/data/rows/"+i1+"/columns",schemaPath:"#/properties/data/properties/rows/items/properties/columns/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err41];}else{vErrors.push(err41);}errors++;}}if(data31.rowActionLocation!==undefined){let data34=data31.rowActionLocation;if(data34&&typeof data34=="object"&&!Array.isArray(data34)){if(data34.actions===undefined){const err42={instancePath:instancePath+"/data/rows/"+i1+"/rowActionLocation",schemaPath:"#/definitions/ActionLocation/required",keyword:"required",params:{missingProperty:"actions"},message:"must have required property '"+"actions"+"'"};if(vErrors===null){vErrors=[err42];}else{vErrors.push(err42);}errors++;}if(data34.type!==undefined){if(typeof data34.type!=="string"){const err43={instancePath:instancePath+"/data/rows/"+i1+"/rowActionLocation/type",schemaPath:"#/definitions/ActionLocation/properties/type/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err43];}else{vErrors.push(err43);}errors++;}}if(data34.actions!==undefined){let data36=data34.actions;if(Array.isArray(data36)){if(data36.length<0){const err44={instancePath:instancePath+"/data/rows/"+i1+"/rowActionLocation/actions",schemaPath:"#/definitions/ActionLocation/properties/actions/minItems",keyword:"minItems",params:{limit:0},message:"must NOT have fewer than 0 items"};if(vErrors===null){vErrors=[err44];}else{vErrors.push(err44);}errors++;}}else{const err45={instancePath:instancePath+"/data/rows/"+i1+"/rowActionLocation/actions",schemaPath:"#/definitions/ActionLocation/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err45];}else{vErrors.push(err45);}errors++;}}}}if(data31.isSelectable!==undefined){if(typeof data31.isSelectable!=="boolean"){const err46={instancePath:instancePath+"/data/rows/"+i1+"/isSelectable",schemaPath:"#/properties/data/properties/rows/items/properties/isSelectable/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err46];}else{vErrors.push(err46);}errors++;}}if(data31.isSelected!==undefined){if(typeof data31.isSelected!=="boolean"){const err47={instancePath:instancePath+"/data/rows/"+i1+"/isSelected",schemaPath:"#/properties/data/properties/rows/items/properties/isSelected/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err47];}else{vErrors.push(err47);}errors++;}}if(data31.selectionTooltip!==undefined){if(typeof data31.selectionTooltip!=="string"){const err48={instancePath:instancePath+"/data/rows/"+i1+"/selectionTooltip",schemaPath:"#/properties/data/properties/rows/items/properties/selectionTooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err48];}else{vErrors.push(err48);}errors++;}}if(data31.isSelectAllEnabled!==undefined){if(typeof data31.isSelectAllEnabled!=="boolean"){const err49={instancePath:instancePath+"/data/rows/"+i1+"/isSelectAllEnabled",schemaPath:"#/properties/data/properties/rows/items/properties/isSelectAllEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err49];}else{vErrors.push(err49);}errors++;}}}else{const err50={instancePath:instancePath+"/data/rows/"+i1,schemaPath:"#/properties/data/properties/rows/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err50];}else{vErrors.push(err50);}errors++;}}}else{const err51={instancePath:instancePath+"/data/rows",schemaPath:"#/properties/data/properties/rows/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err51];}else{vErrors.push(err51);}errors++;}}}else{const err52={instancePath:instancePath+"/data",schemaPath:"#/properties/data/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err52];}else{vErrors.push(err52);}errors++;}}if(data.selection!==undefined){let data41=data.selection;if(data41&&typeof data41=="object"&&!Array.isArray(data41)){if(data41.selected===undefined){const err53={instancePath:instancePath+"/selection",schemaPath:"#/properties/selection/required",keyword:"required",params:{missingProperty:"selected"},message:"must have required property '"+"selected"+"'"};if(vErrors===null){vErrors=[err53];}else{vErrors.push(err53);}errors++;}if(data41.hasAllSelected===undefined){const err54={instancePath:instancePath+"/selection",schemaPath:"#/properties/selection/required",keyword:"required",params:{missingProperty:"hasAllSelected"},message:"must have required property '"+"hasAllSelected"+"'"};if(vErrors===null){vErrors=[err54];}else{vErrors.push(err54);}errors++;}if(data41.actions===undefined){const err55={instancePath:instancePath+"/selection",schemaPath:"#/properties/selection/required",keyword:"required",params:{missingProperty:"actions"},message:"must have required property '"+"actions"+"'"};if(vErrors===null){vErrors=[err55];}else{vErrors.push(err55);}errors++;}if(data41.selected!==undefined){let data42=data41.selected;if(Array.isArray(data42)){const len2=data42.length;for(let i2=0;i2<len2;i2++){if(typeof data42[i2]!=="string"){const err56={instancePath:instancePath+"/selection/selected/"+i2,schemaPath:"#/properties/selection/properties/selected/items/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err56];}else{vErrors.push(err56);}errors++;}}}else{const err57={instancePath:instancePath+"/selection/selected",schemaPath:"#/properties/selection/properties/selected/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err57];}else{vErrors.push(err57);}errors++;}}if(data41.actions!==undefined){let data44=data41.actions;if(Array.isArray(data44)){if(data44.length<0){const err58={instancePath:instancePath+"/selection/actions",schemaPath:"#/properties/selection/properties/actions/minItems",keyword:"minItems",params:{limit:0},message:"must NOT have fewer than 0 items"};if(vErrors===null){vErrors=[err58];}else{vErrors.push(err58);}errors++;}}else{const err59={instancePath:instancePath+"/selection/actions",schemaPath:"#/properties/selection/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err59];}else{vErrors.push(err59);}errors++;}}if(data41.hasAllSelected!==undefined){if(typeof data41.hasAllSelected!=="boolean"){const err60={instancePath:instancePath+"/selection/hasAllSelected",schemaPath:"#/properties/selection/properties/hasAllSelected/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err60];}else{vErrors.push(err60);}errors++;}}}else{const err61={instancePath:instancePath+"/selection",schemaPath:"#/properties/selection/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err61];}else{vErrors.push(err61);}errors++;}}if(data.textOverflowConfig!==undefined){let data46=data.textOverflowConfig;if(data46&&typeof data46=="object"&&!Array.isArray(data46)){if(data46.isEnabled!==undefined){if(typeof data46.isEnabled!=="boolean"){const err62={instancePath:instancePath+"/textOverflowConfig/isEnabled",schemaPath:"#/properties/textOverflowConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err62];}else{vErrors.push(err62);}errors++;}}if(data46.mode!==undefined){let data48=data46.mode;if(typeof data48!=="string"){const err63={instancePath:instancePath+"/textOverflowConfig/mode",schemaPath:"#/properties/textOverflowConfig/properties/mode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err63];}else{vErrors.push(err63);}errors++;}if(!(data48==="clip"||data48==="wrap")){const err64={instancePath:instancePath+"/textOverflowConfig/mode",schemaPath:"#/properties/textOverflowConfig/properties/mode/enum",keyword:"enum",params:{allowedValues:schema64.properties.textOverflowConfig.properties.mode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err64];}else{vErrors.push(err64);}errors++;}}}else{const err65={instancePath:instancePath+"/textOverflowConfig",schemaPath:"#/properties/textOverflowConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err65];}else{vErrors.push(err65);}errors++;}}if(data.floatPaginationConfig!==undefined){let data49=data.floatPaginationConfig;if(data49&&typeof data49=="object"&&!Array.isArray(data49)){if(data49.isEnabled!==undefined){if(typeof data49.isEnabled!=="boolean"){const err66={instancePath:instancePath+"/floatPaginationConfig/isEnabled",schemaPath:"#/properties/floatPaginationConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err66];}else{vErrors.push(err66);}errors++;}}if(data49.scrollCount!==undefined){if(!(typeof data49.scrollCount=="number")){const err67={instancePath:instancePath+"/floatPaginationConfig/scrollCount",schemaPath:"#/properties/floatPaginationConfig/properties/scrollCount/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err67];}else{vErrors.push(err67);}errors++;}}if(data49.totalCount!==undefined){if(!(typeof data49.totalCount=="number")){const err68={instancePath:instancePath+"/floatPaginationConfig/totalCount",schemaPath:"#/properties/floatPaginationConfig/properties/totalCount/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err68];}else{vErrors.push(err68);}errors++;}}if(data49.scrollToUpTooltip!==undefined){if(typeof data49.scrollToUpTooltip!=="string"){const err69={instancePath:instancePath+"/floatPaginationConfig/scrollToUpTooltip",schemaPath:"#/properties/floatPaginationConfig/properties/scrollToUpTooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err69];}else{vErrors.push(err69);}errors++;}}if(data49.isTopReached!==undefined){if(typeof data49.isTopReached!=="boolean"){const err70={instancePath:instancePath+"/floatPaginationConfig/isTopReached",schemaPath:"#/properties/floatPaginationConfig/properties/isTopReached/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err70];}else{vErrors.push(err70);}errors++;}}if(data49.isBottomReached!==undefined){if(typeof data49.isBottomReached!=="boolean"){const err71={instancePath:instancePath+"/floatPaginationConfig/isBottomReached",schemaPath:"#/properties/floatPaginationConfig/properties/isBottomReached/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err71];}else{vErrors.push(err71);}errors++;}}if(data49.scrollToDownTooltip!==undefined){if(typeof data49.scrollToDownTooltip!=="string"){const err72={instancePath:instancePath+"/floatPaginationConfig/scrollToDownTooltip",schemaPath:"#/properties/floatPaginationConfig/properties/scrollToDownTooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err72];}else{vErrors.push(err72);}errors++;}}}else{const err73={instancePath:instancePath+"/floatPaginationConfig",schemaPath:"#/properties/floatPaginationConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err73];}else{vErrors.push(err73);}errors++;}}if(data.keyboardControlsConfig!==undefined){let data57=data.keyboardControlsConfig;if(data57&&typeof data57=="object"&&!Array.isArray(data57)){if(data57.isEnabled!==undefined){if(typeof data57.isEnabled!=="boolean"){const err74={instancePath:instancePath+"/keyboardControlsConfig/isEnabled",schemaPath:"#/properties/keyboardControlsConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err74];}else{vErrors.push(err74);}errors++;}}}else{const err75={instancePath:instancePath+"/keyboardControlsConfig",schemaPath:"#/properties/keyboardControlsConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err75];}else{vErrors.push(err75);}errors++;}}if(data.reOrderConfig!==undefined){let data59=data.reOrderConfig;if(data59&&typeof data59=="object"&&!Array.isArray(data59)){if(data59.isEnabled!==undefined){if(typeof data59.isEnabled!=="boolean"){const err76={instancePath:instancePath+"/reOrderConfig/isEnabled",schemaPath:"#/properties/reOrderConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err76];}else{vErrors.push(err76);}errors++;}}}else{const err77={instancePath:instancePath+"/reOrderConfig",schemaPath:"#/properties/reOrderConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err77];}else{vErrors.push(err77);}errors++;}}if(data.selectionConfig!==undefined){let data61=data.selectionConfig;if(data61&&typeof data61=="object"&&!Array.isArray(data61)){if(data61.isEnabled!==undefined){if(typeof data61.isEnabled!=="boolean"){const err78={instancePath:instancePath+"/selectionConfig/isEnabled",schemaPath:"#/properties/selectionConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err78];}else{vErrors.push(err78);}errors++;}}if(data61.maxSelectionCount!==undefined){if(!(typeof data61.maxSelectionCount=="number")){const err79={instancePath:instancePath+"/selectionConfig/maxSelectionCount",schemaPath:"#/properties/selectionConfig/properties/maxSelectionCount/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err79];}else{vErrors.push(err79);}errors++;}}if(data61.limitExceedAlertMessage!==undefined){if(typeof data61.limitExceedAlertMessage!=="string"){const err80={instancePath:instancePath+"/selectionConfig/limitExceedAlertMessage",schemaPath:"#/properties/selectionConfig/properties/limitExceedAlertMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err80];}else{vErrors.push(err80);}errors++;}}if(data61.isSelectAllEnabled!==undefined){if(typeof data61.isSelectAllEnabled!=="boolean"){const err81={instancePath:instancePath+"/selectionConfig/isSelectAllEnabled",schemaPath:"#/properties/selectionConfig/properties/isSelectAllEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err81];}else{vErrors.push(err81);}errors++;}}}else{const err82={instancePath:instancePath+"/selectionConfig",schemaPath:"#/properties/selectionConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err82];}else{vErrors.push(err82);}errors++;}}}else{const err83={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err83];}else{vErrors.push(err83);}errors++;}validate63.errors=vErrors;return errors===0;}exports["cc_table-list_row"]=validate64;const schema67={"type":"object","properties":{"isReorderEnabled":{"type":"boolean"},"isSelectionEnabled":{"type":"boolean"},"isSelectable":{"type":"boolean"},"isSelected":{"type":"boolean"},"isKeyboardControlsEnabled":{"type":"boolean"},"isFocussed":{"type":"boolean"},"selectionTooltip":{"type":"string"},"id":{"type":"string"},"columns":{"type":"array"},"cursor":{"type":"string","enum":["default","pointer","not-allowed"]},"rowActionLocation":{"type":"object"},"isMultiline":{"type":"boolean"},"isFlexibleColumns":{"type":"boolean"},"rowActionsColumnWidth":{"type":"number","enum":[120,160,200,240,280,320]},"hasActions":{"type":"boolean"},"isSorting":{"type":"boolean"},"isDroppable":{"type":"boolean"},"dropPosition":{"type":"string"},"isReOrderLoading":{"type":"boolean"},"clientScripts":{"type":"array","minItems":0,"items":{"type":"object","properties":{"targetEventName":{"type":"string"},"clientScript":{"type":"string"}}}}},"required":["id"],"$id":"cc_table-list_row"};function validate64(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_table-list_row" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.id===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"id"},message:"must have required property '"+"id"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.isReorderEnabled!==undefined){if(typeof data.isReorderEnabled!=="boolean"){const err1={instancePath:instancePath+"/isReorderEnabled",schemaPath:"#/properties/isReorderEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.isSelectionEnabled!==undefined){if(typeof data.isSelectionEnabled!=="boolean"){const err2={instancePath:instancePath+"/isSelectionEnabled",schemaPath:"#/properties/isSelectionEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.isSelectable!==undefined){if(typeof data.isSelectable!=="boolean"){const err3={instancePath:instancePath+"/isSelectable",schemaPath:"#/properties/isSelectable/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.isSelected!==undefined){if(typeof data.isSelected!=="boolean"){const err4={instancePath:instancePath+"/isSelected",schemaPath:"#/properties/isSelected/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.isKeyboardControlsEnabled!==undefined){if(typeof data.isKeyboardControlsEnabled!=="boolean"){const err5={instancePath:instancePath+"/isKeyboardControlsEnabled",schemaPath:"#/properties/isKeyboardControlsEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data.isFocussed!==undefined){if(typeof data.isFocussed!=="boolean"){const err6={instancePath:instancePath+"/isFocussed",schemaPath:"#/properties/isFocussed/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.selectionTooltip!==undefined){if(typeof data.selectionTooltip!=="string"){const err7={instancePath:instancePath+"/selectionTooltip",schemaPath:"#/properties/selectionTooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data.id!==undefined){if(typeof data.id!=="string"){const err8={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data.columns!==undefined){if(!Array.isArray(data.columns)){const err9={instancePath:instancePath+"/columns",schemaPath:"#/properties/columns/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.cursor!==undefined){let data9=data.cursor;if(typeof data9!=="string"){const err10={instancePath:instancePath+"/cursor",schemaPath:"#/properties/cursor/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}if(!(data9==="default"||data9==="pointer"||data9==="not-allowed")){const err11={instancePath:instancePath+"/cursor",schemaPath:"#/properties/cursor/enum",keyword:"enum",params:{allowedValues:schema67.properties.cursor.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.rowActionLocation!==undefined){let data10=data.rowActionLocation;if(!(data10&&typeof data10=="object"&&!Array.isArray(data10))){const err12={instancePath:instancePath+"/rowActionLocation",schemaPath:"#/properties/rowActionLocation/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.isMultiline!==undefined){if(typeof data.isMultiline!=="boolean"){const err13={instancePath:instancePath+"/isMultiline",schemaPath:"#/properties/isMultiline/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.isFlexibleColumns!==undefined){if(typeof data.isFlexibleColumns!=="boolean"){const err14={instancePath:instancePath+"/isFlexibleColumns",schemaPath:"#/properties/isFlexibleColumns/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data.rowActionsColumnWidth!==undefined){let data13=data.rowActionsColumnWidth;if(!(typeof data13=="number")){const err15={instancePath:instancePath+"/rowActionsColumnWidth",schemaPath:"#/properties/rowActionsColumnWidth/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}if(!(data13===120||data13===160||data13===200||data13===240||data13===280||data13===320)){const err16={instancePath:instancePath+"/rowActionsColumnWidth",schemaPath:"#/properties/rowActionsColumnWidth/enum",keyword:"enum",params:{allowedValues:schema67.properties.rowActionsColumnWidth.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}if(data.hasActions!==undefined){if(typeof data.hasActions!=="boolean"){const err17={instancePath:instancePath+"/hasActions",schemaPath:"#/properties/hasActions/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.isSorting!==undefined){if(typeof data.isSorting!=="boolean"){const err18={instancePath:instancePath+"/isSorting",schemaPath:"#/properties/isSorting/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data.isDroppable!==undefined){if(typeof data.isDroppable!=="boolean"){const err19={instancePath:instancePath+"/isDroppable",schemaPath:"#/properties/isDroppable/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.dropPosition!==undefined){if(typeof data.dropPosition!=="string"){const err20={instancePath:instancePath+"/dropPosition",schemaPath:"#/properties/dropPosition/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}if(data.isReOrderLoading!==undefined){if(typeof data.isReOrderLoading!=="boolean"){const err21={instancePath:instancePath+"/isReOrderLoading",schemaPath:"#/properties/isReOrderLoading/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}if(data.clientScripts!==undefined){let data19=data.clientScripts;if(Array.isArray(data19)){if(data19.length<0){const err22={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/minItems",keyword:"minItems",params:{limit:0},message:"must NOT have fewer than 0 items"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}const len0=data19.length;for(let i0=0;i0<len0;i0++){let data20=data19[i0];if(data20&&typeof data20=="object"&&!Array.isArray(data20)){if(data20.targetEventName!==undefined){if(typeof data20.targetEventName!=="string"){const err23={instancePath:instancePath+"/clientScripts/"+i0+"/targetEventName",schemaPath:"#/properties/clientScripts/items/properties/targetEventName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}if(data20.clientScript!==undefined){if(typeof data20.clientScript!=="string"){const err24={instancePath:instancePath+"/clientScripts/"+i0+"/clientScript",schemaPath:"#/properties/clientScripts/items/properties/clientScript/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}}}else{const err25={instancePath:instancePath+"/clientScripts/"+i0,schemaPath:"#/properties/clientScripts/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}}}else{const err26={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}}else{const err27={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}validate64.errors=vErrors;return errors===0;}exports["cc_table-text-overflow"]=validate65;const schema68={"type":"object","properties":{"textOverflowConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"},"mode":{"type":"string","enum":["clip","wrap"]}}}},"required":[],"$id":"cc_table-text-overflow"};function validate65(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_table-text-overflow" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.textOverflowConfig!==undefined){let data0=data.textOverflowConfig;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.isEnabled!==undefined){if(typeof data0.isEnabled!=="boolean"){const err0={instancePath:instancePath+"/textOverflowConfig/isEnabled",schemaPath:"#/properties/textOverflowConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data0.mode!==undefined){let data2=data0.mode;if(typeof data2!=="string"){const err1={instancePath:instancePath+"/textOverflowConfig/mode",schemaPath:"#/properties/textOverflowConfig/properties/mode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(!(data2==="clip"||data2==="wrap")){const err2={instancePath:instancePath+"/textOverflowConfig/mode",schemaPath:"#/properties/textOverflowConfig/properties/mode/enum",keyword:"enum",params:{allowedValues:schema68.properties.textOverflowConfig.properties.mode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/textOverflowConfig",schemaPath:"#/properties/textOverflowConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}}else{const err4={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}validate65.errors=vErrors;return errors===0;}exports.cc_tag=validate66;const schema69={"type":"object","properties":{"id":{"type":"string"},"label":{"type":"string"},"color":{"type":"string"},"imageSrc":{"type":"string"},"imageAltText":{"type":"string"},"iconName":{"type":"string"},"isDisabled":{"type":"boolean"},"isRemovable":{"type":"boolean"},"cursor":{"type":"string","enum":["pointer","default"]},"size":{"type":"string","enum":["small","medium"]},"tooltip":{"type":"string"}},"required":["label"],"$id":"cc_tag"};function validate66(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_tag" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.label===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"label"},message:"must have required property '"+"label"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.id!==undefined){if(typeof data.id!=="string"){const err1={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.label!==undefined){if(typeof data.label!=="string"){const err2={instancePath:instancePath+"/label",schemaPath:"#/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.color!==undefined){if(typeof data.color!=="string"){const err3={instancePath:instancePath+"/color",schemaPath:"#/properties/color/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.imageSrc!==undefined){if(typeof data.imageSrc!=="string"){const err4={instancePath:instancePath+"/imageSrc",schemaPath:"#/properties/imageSrc/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.imageAltText!==undefined){if(typeof data.imageAltText!=="string"){const err5={instancePath:instancePath+"/imageAltText",schemaPath:"#/properties/imageAltText/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data.iconName!==undefined){if(typeof data.iconName!=="string"){const err6={instancePath:instancePath+"/iconName",schemaPath:"#/properties/iconName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.isDisabled!==undefined){if(typeof data.isDisabled!=="boolean"){const err7={instancePath:instancePath+"/isDisabled",schemaPath:"#/properties/isDisabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data.isRemovable!==undefined){if(typeof data.isRemovable!=="boolean"){const err8={instancePath:instancePath+"/isRemovable",schemaPath:"#/properties/isRemovable/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data.cursor!==undefined){let data8=data.cursor;if(typeof data8!=="string"){const err9={instancePath:instancePath+"/cursor",schemaPath:"#/properties/cursor/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}if(!(data8==="pointer"||data8==="default")){const err10={instancePath:instancePath+"/cursor",schemaPath:"#/properties/cursor/enum",keyword:"enum",params:{allowedValues:schema69.properties.cursor.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.size!==undefined){let data9=data.size;if(typeof data9!=="string"){const err11={instancePath:instancePath+"/size",schemaPath:"#/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}if(!(data9==="small"||data9==="medium")){const err12={instancePath:instancePath+"/size",schemaPath:"#/properties/size/enum",keyword:"enum",params:{allowedValues:schema69.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err13={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}}else{const err14={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}validate66.errors=vErrors;return errors===0;}exports.cc_tags=validate67;const schema70={"type":"object","properties":{"title":{"type":"string"},"isWrapped":{"type":"boolean"},"tags":{"type":"array","items":{"$ref":"#/definitions/TagsProperties"}}},"required":["tags"],"definitions":{"Schema":{"type":"object","properties":{"type":{}}},"TagsProperties":{"type":"object","properties":{"id":{"type":"string"},"label":{"type":"string"},"color":{"type":"string"},"imageSrc":{"type":"string"},"imageAltText":{"type":"string"},"iconName":{"type":"string"},"disabled":{"type":"boolean"},"size":{"type":"string","enum":["small","medium"]},"tooltip":{"type":"string"}},"required":["id","label"]}},"$id":"cc_tags"};const schema71={"type":"object","properties":{"id":{"type":"string"},"label":{"type":"string"},"color":{"type":"string"},"imageSrc":{"type":"string"},"imageAltText":{"type":"string"},"iconName":{"type":"string"},"disabled":{"type":"boolean"},"size":{"type":"string","enum":["small","medium"]},"tooltip":{"type":"string"}},"required":["id","label"]};function validate67(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_tags" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.tags===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"tags"},message:"must have required property '"+"tags"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.title!==undefined){if(typeof data.title!=="string"){const err1={instancePath:instancePath+"/title",schemaPath:"#/properties/title/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.isWrapped!==undefined){if(typeof data.isWrapped!=="boolean"){const err2={instancePath:instancePath+"/isWrapped",schemaPath:"#/properties/isWrapped/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.tags!==undefined){let data2=data.tags;if(Array.isArray(data2)){const len0=data2.length;for(let i0=0;i0<len0;i0++){let data3=data2[i0];if(data3&&typeof data3=="object"&&!Array.isArray(data3)){if(data3.id===undefined){const err3={instancePath:instancePath+"/tags/"+i0,schemaPath:"#/definitions/TagsProperties/required",keyword:"required",params:{missingProperty:"id"},message:"must have required property '"+"id"+"'"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}if(data3.label===undefined){const err4={instancePath:instancePath+"/tags/"+i0,schemaPath:"#/definitions/TagsProperties/required",keyword:"required",params:{missingProperty:"label"},message:"must have required property '"+"label"+"'"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}if(data3.id!==undefined){if(typeof data3.id!=="string"){const err5={instancePath:instancePath+"/tags/"+i0+"/id",schemaPath:"#/definitions/TagsProperties/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data3.label!==undefined){if(typeof data3.label!=="string"){const err6={instancePath:instancePath+"/tags/"+i0+"/label",schemaPath:"#/definitions/TagsProperties/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data3.color!==undefined){if(typeof data3.color!=="string"){const err7={instancePath:instancePath+"/tags/"+i0+"/color",schemaPath:"#/definitions/TagsProperties/properties/color/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data3.imageSrc!==undefined){if(typeof data3.imageSrc!=="string"){const err8={instancePath:instancePath+"/tags/"+i0+"/imageSrc",schemaPath:"#/definitions/TagsProperties/properties/imageSrc/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data3.imageAltText!==undefined){if(typeof data3.imageAltText!=="string"){const err9={instancePath:instancePath+"/tags/"+i0+"/imageAltText",schemaPath:"#/definitions/TagsProperties/properties/imageAltText/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data3.iconName!==undefined){if(typeof data3.iconName!=="string"){const err10={instancePath:instancePath+"/tags/"+i0+"/iconName",schemaPath:"#/definitions/TagsProperties/properties/iconName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data3.disabled!==undefined){if(typeof data3.disabled!=="boolean"){const err11={instancePath:instancePath+"/tags/"+i0+"/disabled",schemaPath:"#/definitions/TagsProperties/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data3.size!==undefined){let data11=data3.size;if(typeof data11!=="string"){const err12={instancePath:instancePath+"/tags/"+i0+"/size",schemaPath:"#/definitions/TagsProperties/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}if(!(data11==="small"||data11==="medium")){const err13={instancePath:instancePath+"/tags/"+i0+"/size",schemaPath:"#/definitions/TagsProperties/properties/size/enum",keyword:"enum",params:{allowedValues:schema71.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data3.tooltip!==undefined){if(typeof data3.tooltip!=="string"){const err14={instancePath:instancePath+"/tags/"+i0+"/tooltip",schemaPath:"#/definitions/TagsProperties/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}}else{const err15={instancePath:instancePath+"/tags/"+i0,schemaPath:"#/definitions/TagsProperties/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}}else{const err16={instancePath:instancePath+"/tags",schemaPath:"#/properties/tags/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}}else{const err17={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}validate67.errors=vErrors;return errors===0;}exports["cc_tags-list-dropdown"]=validate68;const schema72={"type":"object","properties":{"hasSearch":{"type":"boolean"},"searchPlaceholder":{"type":"string"},"text":{"type":"string"},"dropdownHeading":{"type":"string"},"emptyMessage":{"type":"string"},"tags":{"type":"array","items":{"$ref":"#/definitions/TagsProperties"}}},"required":[],"definitions":{"TagsProperties":{"type":"object","properties":{"id":{"type":"string"},"label":{"type":"string"},"color":{"type":"string"},"imageSrc":{"type":"string"},"imageAltText":{"type":"string"},"iconName":{"type":"string"},"iconSize":{"type":"string"},"disabled":{"type":"boolean"},"tooltip":{"type":"string"}},"required":["label"]}},"$id":"cc_tags-list-dropdown"};const schema73={"type":"object","properties":{"id":{"type":"string"},"label":{"type":"string"},"color":{"type":"string"},"imageSrc":{"type":"string"},"imageAltText":{"type":"string"},"iconName":{"type":"string"},"iconSize":{"type":"string"},"disabled":{"type":"boolean"},"tooltip":{"type":"string"}},"required":["label"]};function validate68(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_tags-list-dropdown" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.hasSearch!==undefined){if(typeof data.hasSearch!=="boolean"){const err0={instancePath:instancePath+"/hasSearch",schemaPath:"#/properties/hasSearch/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data.searchPlaceholder!==undefined){if(typeof data.searchPlaceholder!=="string"){const err1={instancePath:instancePath+"/searchPlaceholder",schemaPath:"#/properties/searchPlaceholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.text!==undefined){if(typeof data.text!=="string"){const err2={instancePath:instancePath+"/text",schemaPath:"#/properties/text/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.dropdownHeading!==undefined){if(typeof data.dropdownHeading!=="string"){const err3={instancePath:instancePath+"/dropdownHeading",schemaPath:"#/properties/dropdownHeading/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.emptyMessage!==undefined){if(typeof data.emptyMessage!=="string"){const err4={instancePath:instancePath+"/emptyMessage",schemaPath:"#/properties/emptyMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.tags!==undefined){let data5=data.tags;if(Array.isArray(data5)){const len0=data5.length;for(let i0=0;i0<len0;i0++){let data6=data5[i0];if(data6&&typeof data6=="object"&&!Array.isArray(data6)){if(data6.label===undefined){const err5={instancePath:instancePath+"/tags/"+i0,schemaPath:"#/definitions/TagsProperties/required",keyword:"required",params:{missingProperty:"label"},message:"must have required property '"+"label"+"'"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}if(data6.id!==undefined){if(typeof data6.id!=="string"){const err6={instancePath:instancePath+"/tags/"+i0+"/id",schemaPath:"#/definitions/TagsProperties/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data6.label!==undefined){if(typeof data6.label!=="string"){const err7={instancePath:instancePath+"/tags/"+i0+"/label",schemaPath:"#/definitions/TagsProperties/properties/label/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data6.color!==undefined){if(typeof data6.color!=="string"){const err8={instancePath:instancePath+"/tags/"+i0+"/color",schemaPath:"#/definitions/TagsProperties/properties/color/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data6.imageSrc!==undefined){if(typeof data6.imageSrc!=="string"){const err9={instancePath:instancePath+"/tags/"+i0+"/imageSrc",schemaPath:"#/definitions/TagsProperties/properties/imageSrc/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data6.imageAltText!==undefined){if(typeof data6.imageAltText!=="string"){const err10={instancePath:instancePath+"/tags/"+i0+"/imageAltText",schemaPath:"#/definitions/TagsProperties/properties/imageAltText/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data6.iconName!==undefined){if(typeof data6.iconName!=="string"){const err11={instancePath:instancePath+"/tags/"+i0+"/iconName",schemaPath:"#/definitions/TagsProperties/properties/iconName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data6.iconSize!==undefined){if(typeof data6.iconSize!=="string"){const err12={instancePath:instancePath+"/tags/"+i0+"/iconSize",schemaPath:"#/definitions/TagsProperties/properties/iconSize/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data6.disabled!==undefined){if(typeof data6.disabled!=="boolean"){const err13={instancePath:instancePath+"/tags/"+i0+"/disabled",schemaPath:"#/definitions/TagsProperties/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data6.tooltip!==undefined){if(typeof data6.tooltip!=="string"){const err14={instancePath:instancePath+"/tags/"+i0+"/tooltip",schemaPath:"#/definitions/TagsProperties/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}}else{const err15={instancePath:instancePath+"/tags/"+i0,schemaPath:"#/definitions/TagsProperties/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}}else{const err16={instancePath:instancePath+"/tags",schemaPath:"#/properties/tags/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}}else{const err17={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}validate68.errors=vErrors;return errors===0;}exports.cc_text=validate69;const schema74={"type":"object","properties":{"text":{"type":"string"},"size":{"type":"string","enum":["7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","24","25","26","28","29","30","32","34","35","36","40","50","inherit"]},"textAlign":{"type":"string","enum":["left","right","center","justify"]},"wordBreak":{"type":"string","enum":["breakAll","keepAll","breakWord"]},"lineClamp":{"type":"string","enum":["1","2","3","4","5"]},"lineHeight":{"type":"string","enum":["0","0.1","0.2","0.3","0.4","0.5","0.6","0.7","0.8","0.9","1","1.1","1.2","1.3","1.4","1.5","1.6","1.7","1.8","1.9","2","normal","initial","inherit"]},"letterSpacing":{"type":"string","enum":["0.1","0.2","0.3","0.4","0.5","0.6","0.7","0.8","0.9","1","1.1","1.2","1.3","1.4","1.5","1.6","1.7","1.8","1.9","2","inherit"]},"display":{"type":"string","enum":["block","inlineBlock","inline","initial"]},"decoration":{"type":"string","enum":["default","underline","strike","overline"]},"whiteSpace":{"type":"string","enum":["normal","noWrap","pre","preLine","preWrap"]},"wordWrap":{"type":"string","enum":["normal","break"]},"transform":{"type":"string","enum":["default","upper","lower","capital"]},"weight":{"type":"string","enum":["light","regular","semibold","bold"]},"isDotted":{"type":"boolean"},"tooltip":{"type":"string"}},"required":["text"],"$id":"cc_text"};function validate69(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_text" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.text===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"text"},message:"must have required property '"+"text"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.text!==undefined){if(typeof data.text!=="string"){const err1={instancePath:instancePath+"/text",schemaPath:"#/properties/text/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.size!==undefined){let data1=data.size;if(typeof data1!=="string"){const err2={instancePath:instancePath+"/size",schemaPath:"#/properties/size/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}if(!(data1==="7"||data1==="8"||data1==="9"||data1==="10"||data1==="11"||data1==="12"||data1==="13"||data1==="14"||data1==="15"||data1==="16"||data1==="17"||data1==="18"||data1==="19"||data1==="20"||data1==="21"||data1==="22"||data1==="24"||data1==="25"||data1==="26"||data1==="28"||data1==="29"||data1==="30"||data1==="32"||data1==="34"||data1==="35"||data1==="36"||data1==="40"||data1==="50"||data1==="inherit")){const err3={instancePath:instancePath+"/size",schemaPath:"#/properties/size/enum",keyword:"enum",params:{allowedValues:schema74.properties.size.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.textAlign!==undefined){let data2=data.textAlign;if(typeof data2!=="string"){const err4={instancePath:instancePath+"/textAlign",schemaPath:"#/properties/textAlign/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}if(!(data2==="left"||data2==="right"||data2==="center"||data2==="justify")){const err5={instancePath:instancePath+"/textAlign",schemaPath:"#/properties/textAlign/enum",keyword:"enum",params:{allowedValues:schema74.properties.textAlign.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data.wordBreak!==undefined){let data3=data.wordBreak;if(typeof data3!=="string"){const err6={instancePath:instancePath+"/wordBreak",schemaPath:"#/properties/wordBreak/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}if(!(data3==="breakAll"||data3==="keepAll"||data3==="breakWord")){const err7={instancePath:instancePath+"/wordBreak",schemaPath:"#/properties/wordBreak/enum",keyword:"enum",params:{allowedValues:schema74.properties.wordBreak.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data.lineClamp!==undefined){let data4=data.lineClamp;if(typeof data4!=="string"){const err8={instancePath:instancePath+"/lineClamp",schemaPath:"#/properties/lineClamp/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}if(!(data4==="1"||data4==="2"||data4==="3"||data4==="4"||data4==="5")){const err9={instancePath:instancePath+"/lineClamp",schemaPath:"#/properties/lineClamp/enum",keyword:"enum",params:{allowedValues:schema74.properties.lineClamp.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.lineHeight!==undefined){let data5=data.lineHeight;if(typeof data5!=="string"){const err10={instancePath:instancePath+"/lineHeight",schemaPath:"#/properties/lineHeight/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}if(!(data5==="0"||data5==="0.1"||data5==="0.2"||data5==="0.3"||data5==="0.4"||data5==="0.5"||data5==="0.6"||data5==="0.7"||data5==="0.8"||data5==="0.9"||data5==="1"||data5==="1.1"||data5==="1.2"||data5==="1.3"||data5==="1.4"||data5==="1.5"||data5==="1.6"||data5==="1.7"||data5==="1.8"||data5==="1.9"||data5==="2"||data5==="normal"||data5==="initial"||data5==="inherit")){const err11={instancePath:instancePath+"/lineHeight",schemaPath:"#/properties/lineHeight/enum",keyword:"enum",params:{allowedValues:schema74.properties.lineHeight.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.letterSpacing!==undefined){let data6=data.letterSpacing;if(typeof data6!=="string"){const err12={instancePath:instancePath+"/letterSpacing",schemaPath:"#/properties/letterSpacing/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}if(!(data6==="0.1"||data6==="0.2"||data6==="0.3"||data6==="0.4"||data6==="0.5"||data6==="0.6"||data6==="0.7"||data6==="0.8"||data6==="0.9"||data6==="1"||data6==="1.1"||data6==="1.2"||data6==="1.3"||data6==="1.4"||data6==="1.5"||data6==="1.6"||data6==="1.7"||data6==="1.8"||data6==="1.9"||data6==="2"||data6==="inherit")){const err13={instancePath:instancePath+"/letterSpacing",schemaPath:"#/properties/letterSpacing/enum",keyword:"enum",params:{allowedValues:schema74.properties.letterSpacing.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data.display!==undefined){let data7=data.display;if(typeof data7!=="string"){const err14={instancePath:instancePath+"/display",schemaPath:"#/properties/display/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}if(!(data7==="block"||data7==="inlineBlock"||data7==="inline"||data7==="initial")){const err15={instancePath:instancePath+"/display",schemaPath:"#/properties/display/enum",keyword:"enum",params:{allowedValues:schema74.properties.display.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}if(data.decoration!==undefined){let data8=data.decoration;if(typeof data8!=="string"){const err16={instancePath:instancePath+"/decoration",schemaPath:"#/properties/decoration/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}if(!(data8==="default"||data8==="underline"||data8==="strike"||data8==="overline")){const err17={instancePath:instancePath+"/decoration",schemaPath:"#/properties/decoration/enum",keyword:"enum",params:{allowedValues:schema74.properties.decoration.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data.whiteSpace!==undefined){let data9=data.whiteSpace;if(typeof data9!=="string"){const err18={instancePath:instancePath+"/whiteSpace",schemaPath:"#/properties/whiteSpace/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}if(!(data9==="normal"||data9==="noWrap"||data9==="pre"||data9==="preLine"||data9==="preWrap")){const err19={instancePath:instancePath+"/whiteSpace",schemaPath:"#/properties/whiteSpace/enum",keyword:"enum",params:{allowedValues:schema74.properties.whiteSpace.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data.wordWrap!==undefined){let data10=data.wordWrap;if(typeof data10!=="string"){const err20={instancePath:instancePath+"/wordWrap",schemaPath:"#/properties/wordWrap/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}if(!(data10==="normal"||data10==="break")){const err21={instancePath:instancePath+"/wordWrap",schemaPath:"#/properties/wordWrap/enum",keyword:"enum",params:{allowedValues:schema74.properties.wordWrap.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}if(data.transform!==undefined){let data11=data.transform;if(typeof data11!=="string"){const err22={instancePath:instancePath+"/transform",schemaPath:"#/properties/transform/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}if(!(data11==="default"||data11==="upper"||data11==="lower"||data11==="capital")){const err23={instancePath:instancePath+"/transform",schemaPath:"#/properties/transform/enum",keyword:"enum",params:{allowedValues:schema74.properties.transform.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err23];}else{vErrors.push(err23);}errors++;}}if(data.weight!==undefined){let data12=data.weight;if(typeof data12!=="string"){const err24={instancePath:instancePath+"/weight",schemaPath:"#/properties/weight/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err24];}else{vErrors.push(err24);}errors++;}if(!(data12==="light"||data12==="regular"||data12==="semibold"||data12==="bold")){const err25={instancePath:instancePath+"/weight",schemaPath:"#/properties/weight/enum",keyword:"enum",params:{allowedValues:schema74.properties.weight.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err25];}else{vErrors.push(err25);}errors++;}}if(data.isDotted!==undefined){if(typeof data.isDotted!=="boolean"){const err26={instancePath:instancePath+"/isDotted",schemaPath:"#/properties/isDotted/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err26];}else{vErrors.push(err26);}errors++;}}if(data.tooltip!==undefined){if(typeof data.tooltip!=="string"){const err27={instancePath:instancePath+"/tooltip",schemaPath:"#/properties/tooltip/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err27];}else{vErrors.push(err27);}errors++;}}}else{const err28={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err28];}else{vErrors.push(err28);}errors++;}validate69.errors=vErrors;return errors===0;}exports.cc_textarea=validate70;const schema75={"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"maxLength":{"type":"number"},"placeholder":{"type":"string"},"required":{"type":"boolean"},"value":{"type":"string"},"disabled":{"type":"boolean"},"readonly":{"type":"boolean"},"actions":{"type":"array","items":{"type":"object"}}},"required":[],"$id":"cc_textarea"};function validate70(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_textarea" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.id!==undefined){if(typeof data.id!=="string"){const err0={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err1={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.maxLength!==undefined){if(!(typeof data.maxLength=="number")){const err2={instancePath:instancePath+"/maxLength",schemaPath:"#/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.placeholder!==undefined){if(typeof data.placeholder!=="string"){const err3={instancePath:instancePath+"/placeholder",schemaPath:"#/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err4={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.value!==undefined){if(typeof data.value!=="string"){const err5={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err6={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err7={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data.actions!==undefined){let data8=data.actions;if(Array.isArray(data8)){const len0=data8.length;for(let i0=0;i0<len0;i0++){let data9=data8[i0];if(!(data9&&typeof data9=="object"&&!Array.isArray(data9))){const err8={instancePath:instancePath+"/actions/"+i0,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}}else{const err9={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}}else{const err10={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}validate70.errors=vErrors;return errors===0;}exports.cc_textbox=validate71;const schema76={"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"type":{"type":"string","enum":["text","password","number"]},"maxLength":{"type":"number"},"placeholder":{"type":"string"},"value":{"type":["string","number"]},"required":{"type":"boolean"},"disabled":{"type":"boolean"},"readonly":{"type":"boolean"},"actions":{"type":"array","items":{"type":"object"}},"clientScripts":{"type":"array"}},"required":[],"$id":"cc_textbox"};function validate71(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="cc_textbox" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.id!==undefined){if(typeof data.id!=="string"){const err0={instancePath:instancePath+"/id",schemaPath:"#/properties/id/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data.name!==undefined){if(typeof data.name!=="string"){const err1={instancePath:instancePath+"/name",schemaPath:"#/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.type!==undefined){let data2=data.type;if(typeof data2!=="string"){const err2={instancePath:instancePath+"/type",schemaPath:"#/properties/type/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}if(!(data2==="text"||data2==="password"||data2==="number")){const err3={instancePath:instancePath+"/type",schemaPath:"#/properties/type/enum",keyword:"enum",params:{allowedValues:schema76.properties.type.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.maxLength!==undefined){if(!(typeof data.maxLength=="number")){const err4={instancePath:instancePath+"/maxLength",schemaPath:"#/properties/maxLength/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.placeholder!==undefined){if(typeof data.placeholder!=="string"){const err5={instancePath:instancePath+"/placeholder",schemaPath:"#/properties/placeholder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data.value!==undefined){let data5=data.value;if(typeof data5!=="string"&&!(typeof data5=="number")){const err6={instancePath:instancePath+"/value",schemaPath:"#/properties/value/type",keyword:"type",params:{type:schema76.properties.value.type},message:"must be string,number"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.required!==undefined){if(typeof data.required!=="boolean"){const err7={instancePath:instancePath+"/required",schemaPath:"#/properties/required/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data.disabled!==undefined){if(typeof data.disabled!=="boolean"){const err8={instancePath:instancePath+"/disabled",schemaPath:"#/properties/disabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data.readonly!==undefined){if(typeof data.readonly!=="boolean"){const err9={instancePath:instancePath+"/readonly",schemaPath:"#/properties/readonly/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.actions!==undefined){let data9=data.actions;if(Array.isArray(data9)){const len0=data9.length;for(let i0=0;i0<len0;i0++){let data10=data9[i0];if(!(data10&&typeof data10=="object"&&!Array.isArray(data10))){const err10={instancePath:instancePath+"/actions/"+i0,schemaPath:"#/properties/actions/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}}else{const err11={instancePath:instancePath+"/actions",schemaPath:"#/properties/actions/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}if(data.clientScripts!==undefined){if(!Array.isArray(data.clientScripts)){const err12={instancePath:instancePath+"/clientScripts",schemaPath:"#/properties/clientScripts/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}}else{const err13={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}validate71.errors=vErrors;return errors===0;}exports["bc_action-band"]=validate72;const schema77={"type":"object","properties":{"moduleName":{"type":"string"}},"required":["moduleName"],"$id":"bc_action-band"};function validate72(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="bc_action-band" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.moduleName===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"moduleName"},message:"must have required property '"+"moduleName"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.moduleName!==undefined){if(typeof data.moduleName!=="string"){const err1={instancePath:instancePath+"/moduleName",schemaPath:"#/properties/moduleName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}}else{const err2={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}validate72.errors=vErrors;return errors===0;}exports["bc_app-context"]=validate73;const schema78={"type":"object","properties":{"context":{"type":"object","properties":{"orgId":{"type":"string"},"orgName":{"type":"string"},"currencyLocale":{"type":"string"},"currencySymbol":{"type":"string"},"servicePrefix":{"type":"string"},"dateTimeFormat":{"type":"object","properties":{"dateFormat":{"type":"string"},"timeFormat":{"type":"string","enum":["12-hour","24-hour"]},"delimiter":{"type":"string","enum":["space","dot","hyphen","slash"]},"isShortenDateTimeInfo":{"type":"boolean"}}},"modules":{"type":"array","items":{"type":"object","properties":{"apiKey":{"type":"string"},"hasRecycleBin":{"type":"boolean"},"nameField":{"type":"string"}}}},"departmentName":{"type":"string"},"routing":{"type":"object"},"additionalData":{"type":"object"}},"additionalProperties":false}},"required":[],"$id":"bc_app-context"};const func6=Object.prototype.hasOwnProperty;function validate73(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="bc_app-context" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.context!==undefined){let data0=data.context;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){for(const key0 in data0){if(!func6.call(schema78.properties.context.properties,key0)){const err0={instancePath:instancePath+"/context",schemaPath:"#/properties/context/additionalProperties",keyword:"additionalProperties",params:{additionalProperty:key0},message:"must NOT have additional properties"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data0.orgId!==undefined){if(typeof data0.orgId!=="string"){const err1={instancePath:instancePath+"/context/orgId",schemaPath:"#/properties/context/properties/orgId/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data0.orgName!==undefined){if(typeof data0.orgName!=="string"){const err2={instancePath:instancePath+"/context/orgName",schemaPath:"#/properties/context/properties/orgName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data0.currencyLocale!==undefined){if(typeof data0.currencyLocale!=="string"){const err3={instancePath:instancePath+"/context/currencyLocale",schemaPath:"#/properties/context/properties/currencyLocale/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data0.currencySymbol!==undefined){if(typeof data0.currencySymbol!=="string"){const err4={instancePath:instancePath+"/context/currencySymbol",schemaPath:"#/properties/context/properties/currencySymbol/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data0.servicePrefix!==undefined){if(typeof data0.servicePrefix!=="string"){const err5={instancePath:instancePath+"/context/servicePrefix",schemaPath:"#/properties/context/properties/servicePrefix/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data0.dateTimeFormat!==undefined){let data6=data0.dateTimeFormat;if(data6&&typeof data6=="object"&&!Array.isArray(data6)){if(data6.dateFormat!==undefined){if(typeof data6.dateFormat!=="string"){const err6={instancePath:instancePath+"/context/dateTimeFormat/dateFormat",schemaPath:"#/properties/context/properties/dateTimeFormat/properties/dateFormat/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data6.timeFormat!==undefined){let data8=data6.timeFormat;if(typeof data8!=="string"){const err7={instancePath:instancePath+"/context/dateTimeFormat/timeFormat",schemaPath:"#/properties/context/properties/dateTimeFormat/properties/timeFormat/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}if(!(data8==="12-hour"||data8==="24-hour")){const err8={instancePath:instancePath+"/context/dateTimeFormat/timeFormat",schemaPath:"#/properties/context/properties/dateTimeFormat/properties/timeFormat/enum",keyword:"enum",params:{allowedValues:schema78.properties.context.properties.dateTimeFormat.properties.timeFormat.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data6.delimiter!==undefined){let data9=data6.delimiter;if(typeof data9!=="string"){const err9={instancePath:instancePath+"/context/dateTimeFormat/delimiter",schemaPath:"#/properties/context/properties/dateTimeFormat/properties/delimiter/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}if(!(data9==="space"||data9==="dot"||data9==="hyphen"||data9==="slash")){const err10={instancePath:instancePath+"/context/dateTimeFormat/delimiter",schemaPath:"#/properties/context/properties/dateTimeFormat/properties/delimiter/enum",keyword:"enum",params:{allowedValues:schema78.properties.context.properties.dateTimeFormat.properties.delimiter.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data6.isShortenDateTimeInfo!==undefined){if(typeof data6.isShortenDateTimeInfo!=="boolean"){const err11={instancePath:instancePath+"/context/dateTimeFormat/isShortenDateTimeInfo",schemaPath:"#/properties/context/properties/dateTimeFormat/properties/isShortenDateTimeInfo/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}}else{const err12={instancePath:instancePath+"/context/dateTimeFormat",schemaPath:"#/properties/context/properties/dateTimeFormat/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}}if(data0.modules!==undefined){let data11=data0.modules;if(Array.isArray(data11)){const len0=data11.length;for(let i0=0;i0<len0;i0++){let data12=data11[i0];if(data12&&typeof data12=="object"&&!Array.isArray(data12)){if(data12.apiKey!==undefined){if(typeof data12.apiKey!=="string"){const err13={instancePath:instancePath+"/context/modules/"+i0+"/apiKey",schemaPath:"#/properties/context/properties/modules/items/properties/apiKey/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err13];}else{vErrors.push(err13);}errors++;}}if(data12.hasRecycleBin!==undefined){if(typeof data12.hasRecycleBin!=="boolean"){const err14={instancePath:instancePath+"/context/modules/"+i0+"/hasRecycleBin",schemaPath:"#/properties/context/properties/modules/items/properties/hasRecycleBin/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err14];}else{vErrors.push(err14);}errors++;}}if(data12.nameField!==undefined){if(typeof data12.nameField!=="string"){const err15={instancePath:instancePath+"/context/modules/"+i0+"/nameField",schemaPath:"#/properties/context/properties/modules/items/properties/nameField/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err15];}else{vErrors.push(err15);}errors++;}}}else{const err16={instancePath:instancePath+"/context/modules/"+i0,schemaPath:"#/properties/context/properties/modules/items/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err16];}else{vErrors.push(err16);}errors++;}}}else{const err17={instancePath:instancePath+"/context/modules",schemaPath:"#/properties/context/properties/modules/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err17];}else{vErrors.push(err17);}errors++;}}if(data0.departmentName!==undefined){if(typeof data0.departmentName!=="string"){const err18={instancePath:instancePath+"/context/departmentName",schemaPath:"#/properties/context/properties/departmentName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err18];}else{vErrors.push(err18);}errors++;}}if(data0.routing!==undefined){let data17=data0.routing;if(!(data17&&typeof data17=="object"&&!Array.isArray(data17))){const err19={instancePath:instancePath+"/context/routing",schemaPath:"#/properties/context/properties/routing/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err19];}else{vErrors.push(err19);}errors++;}}if(data0.additionalData!==undefined){let data18=data0.additionalData;if(!(data18&&typeof data18=="object"&&!Array.isArray(data18))){const err20={instancePath:instancePath+"/context/additionalData",schemaPath:"#/properties/context/properties/additionalData/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err20];}else{vErrors.push(err20);}errors++;}}}else{const err21={instancePath:instancePath+"/context",schemaPath:"#/properties/context/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err21];}else{vErrors.push(err21);}errors++;}}}else{const err22={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err22];}else{vErrors.push(err22);}errors++;}validate73.errors=vErrors;return errors===0;}exports["bc_clip-wrap"]=validate74;const schema79={"type":"object","properties":{"textOverflowConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"},"mode":{"type":"string","enum":["clip","wrap"]}}}},"required":[],"$id":"bc_clip-wrap"};function validate74(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="bc_clip-wrap" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.textOverflowConfig!==undefined){let data0=data.textOverflowConfig;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.isEnabled!==undefined){if(typeof data0.isEnabled!=="boolean"){const err0={instancePath:instancePath+"/textOverflowConfig/isEnabled",schemaPath:"#/properties/textOverflowConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data0.mode!==undefined){let data2=data0.mode;if(typeof data2!=="string"){const err1={instancePath:instancePath+"/textOverflowConfig/mode",schemaPath:"#/properties/textOverflowConfig/properties/mode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(!(data2==="clip"||data2==="wrap")){const err2={instancePath:instancePath+"/textOverflowConfig/mode",schemaPath:"#/properties/textOverflowConfig/properties/mode/enum",keyword:"enum",params:{allowedValues:schema79.properties.textOverflowConfig.properties.mode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/textOverflowConfig",schemaPath:"#/properties/textOverflowConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}}else{const err4={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}validate74.errors=vErrors;return errors===0;}exports["bc_column-chooser"]=validate75;const schema80={"type":"object","properties":{"columnChooserConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"}}},"fieldRestrictionConfig":{"type":"array","items":{"type":"string"}}},"required":[],"$id":"bc_column-chooser"};function validate75(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="bc_column-chooser" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.columnChooserConfig!==undefined){let data0=data.columnChooserConfig;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.isEnabled!==undefined){if(typeof data0.isEnabled!=="boolean"){const err0={instancePath:instancePath+"/columnChooserConfig/isEnabled",schemaPath:"#/properties/columnChooserConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}}else{const err1={instancePath:instancePath+"/columnChooserConfig",schemaPath:"#/properties/columnChooserConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.fieldRestrictionConfig!==undefined){let data2=data.fieldRestrictionConfig;if(Array.isArray(data2)){const len0=data2.length;for(let i0=0;i0<len0;i0++){if(typeof data2[i0]!=="string"){const err2={instancePath:instancePath+"/fieldRestrictionConfig/"+i0,schemaPath:"#/properties/fieldRestrictionConfig/items/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}}else{const err3={instancePath:instancePath+"/fieldRestrictionConfig",schemaPath:"#/properties/fieldRestrictionConfig/type",keyword:"type",params:{type:"array"},message:"must be array"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}}else{const err4={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}validate75.errors=vErrors;return errors===0;}exports["bc_float-pagination"]=validate76;const schema81={"type":"object","properties":{"floatPaginationConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"}}}},"required":[],"$id":"bc_float-pagination"};function validate76(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="bc_float-pagination" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.floatPaginationConfig!==undefined){let data0=data.floatPaginationConfig;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.isEnabled!==undefined){if(typeof data0.isEnabled!=="boolean"){const err0={instancePath:instancePath+"/floatPaginationConfig/isEnabled",schemaPath:"#/properties/floatPaginationConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}}else{const err1={instancePath:instancePath+"/floatPaginationConfig",schemaPath:"#/properties/floatPaginationConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}}else{const err2={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}validate76.errors=vErrors;return errors===0;}exports["bc_keyboard-controls"]=validate77;const schema82={"type":"object","properties":{"listItemSelector":{"type":"string"}},"required":[],"$id":"bc_keyboard-controls"};function validate77(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="bc_keyboard-controls" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.listItemSelector!==undefined){if(typeof data.listItemSelector!=="string"){const err0={instancePath:instancePath+"/listItemSelector",schemaPath:"#/properties/listItemSelector/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}}else{const err1={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}validate77.errors=vErrors;return errors===0;}exports["bc_list-selection"]=validate78;const schema83={"type":"object","properties":{"selectionConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"},"maxSelectionCount":{"type":"number"},"limitExceedAlertMessage":{"type":"string"},"isSelectAllEnabled":{"type":"boolean"}}}},"required":[],"$id":"bc_list-selection"};function validate78(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="bc_list-selection" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.selectionConfig!==undefined){let data0=data.selectionConfig;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.isEnabled!==undefined){if(typeof data0.isEnabled!=="boolean"){const err0={instancePath:instancePath+"/selectionConfig/isEnabled",schemaPath:"#/properties/selectionConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data0.maxSelectionCount!==undefined){if(!(typeof data0.maxSelectionCount=="number")){const err1={instancePath:instancePath+"/selectionConfig/maxSelectionCount",schemaPath:"#/properties/selectionConfig/properties/maxSelectionCount/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data0.limitExceedAlertMessage!==undefined){if(typeof data0.limitExceedAlertMessage!=="string"){const err2={instancePath:instancePath+"/selectionConfig/limitExceedAlertMessage",schemaPath:"#/properties/selectionConfig/properties/limitExceedAlertMessage/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data0.isSelectAllEnabled!==undefined){if(typeof data0.isSelectAllEnabled!=="boolean"){const err3={instancePath:instancePath+"/selectionConfig/isSelectAllEnabled",schemaPath:"#/properties/selectionConfig/properties/isSelectAllEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}}else{const err4={instancePath:instancePath+"/selectionConfig",schemaPath:"#/properties/selectionConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}}else{const err5={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}validate78.errors=vErrors;return errors===0;}exports["bc_local-storage"]=validate79;const schema84={"type":"object","properties":{},"required":[],"$id":"bc_local-storage"};function validate79(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="bc_local-storage" */;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++;}validate79.errors=vErrors;return errors===0;}exports.bc_sdk=validate80;const schema85={"type":"object","properties":{"instanceName":{"type":"string"}},"required":["instanceName"],"$id":"bc_sdk"};function validate80(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="bc_sdk" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.instanceName===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"instanceName"},message:"must have required property '"+"instanceName"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.instanceName!==undefined){if(typeof data.instanceName!=="string"){const err1={instancePath:instancePath+"/instanceName",schemaPath:"#/properties/instanceName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}}else{const err2={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}validate80.errors=vErrors;return errors===0;}exports.bc_search=validate81;const schema86={"type":"object","properties":{"searchString":{"type":"string"}},"required":[],"$id":"bc_search"};function validate81(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="bc_search" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.searchString!==undefined){if(typeof data.searchString!=="string"){const err0={instancePath:instancePath+"/searchString",schemaPath:"#/properties/searchString/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}}else{const err1={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}validate81.errors=vErrors;return errors===0;}exports["bc_search-box"]=validate82;const schema87={"type":"object","properties":{"searchConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"}}}},"required":[],"$id":"bc_search-box"};function validate82(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="bc_search-box" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.searchConfig!==undefined){let data0=data.searchConfig;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.isEnabled!==undefined){if(typeof data0.isEnabled!=="boolean"){const err0={instancePath:instancePath+"/searchConfig/isEnabled",schemaPath:"#/properties/searchConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}}else{const err1={instancePath:instancePath+"/searchConfig",schemaPath:"#/properties/searchConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}}else{const err2={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}validate82.errors=vErrors;return errors===0;}exports["bc_sort-by"]=validate83;const schema88={"type":"object","properties":{"sortConfig":{"type":"object","properties":{"isEnabled":{"type":"boolean"},"sortOrder":{"type":"string","enum":["ascending","descending"]},"sortField":{"type":"string"},"defaultSortField":{"type":"string"}}}},"required":[],"$id":"bc_sort-by"};function validate83(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="bc_sort-by" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.sortConfig!==undefined){let data0=data.sortConfig;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.isEnabled!==undefined){if(typeof data0.isEnabled!=="boolean"){const err0={instancePath:instancePath+"/sortConfig/isEnabled",schemaPath:"#/properties/sortConfig/properties/isEnabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data0.sortOrder!==undefined){let data2=data0.sortOrder;if(typeof data2!=="string"){const err1={instancePath:instancePath+"/sortConfig/sortOrder",schemaPath:"#/properties/sortConfig/properties/sortOrder/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(!(data2==="ascending"||data2==="descending")){const err2={instancePath:instancePath+"/sortConfig/sortOrder",schemaPath:"#/properties/sortConfig/properties/sortOrder/enum",keyword:"enum",params:{allowedValues:schema88.properties.sortConfig.properties.sortOrder.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data0.sortField!==undefined){if(typeof data0.sortField!=="string"){const err3={instancePath:instancePath+"/sortConfig/sortField",schemaPath:"#/properties/sortConfig/properties/sortField/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data0.defaultSortField!==undefined){if(typeof data0.defaultSortField!=="string"){const err4={instancePath:instancePath+"/sortConfig/defaultSortField",schemaPath:"#/properties/sortConfig/properties/defaultSortField/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}}else{const err5={instancePath:instancePath+"/sortConfig",schemaPath:"#/properties/sortConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}}else{const err6={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}validate83.errors=vErrors;return errors===0;}exports["bc_table-column-resizer"]=validate84;const schema89={"type":"object","properties":{"resizeConfig":{"type":"object","properties":{"enabled":{"type":"boolean"},"isRTL":{"type":"boolean"},"minWidth":{"type":"number"},"maxWidth":{"type":"number"}},"required":[]}},"required":[],"$id":"bc_table-column-resizer"};function validate84(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="bc_table-column-resizer" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.resizeConfig!==undefined){let data0=data.resizeConfig;if(data0&&typeof data0=="object"&&!Array.isArray(data0)){if(data0.enabled!==undefined){if(typeof data0.enabled!=="boolean"){const err0={instancePath:instancePath+"/resizeConfig/enabled",schemaPath:"#/properties/resizeConfig/properties/enabled/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}if(data0.isRTL!==undefined){if(typeof data0.isRTL!=="boolean"){const err1={instancePath:instancePath+"/resizeConfig/isRTL",schemaPath:"#/properties/resizeConfig/properties/isRTL/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data0.minWidth!==undefined){if(!(typeof data0.minWidth=="number")){const err2={instancePath:instancePath+"/resizeConfig/minWidth",schemaPath:"#/properties/resizeConfig/properties/minWidth/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data0.maxWidth!==undefined){if(!(typeof data0.maxWidth=="number")){const err3={instancePath:instancePath+"/resizeConfig/maxWidth",schemaPath:"#/properties/resizeConfig/properties/maxWidth/type",keyword:"type",params:{type:"number"},message:"must be number"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}}else{const err4={instancePath:instancePath+"/resizeConfig",schemaPath:"#/properties/resizeConfig/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}}else{const err5={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}validate84.errors=vErrors;return errors===0;}exports["bc_zdata-source"]=validate85;const schema90={"type":"object","properties":{},"required":[],"$id":"bc_zdata-source"};function validate85(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="bc_zdata-source" */;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++;}validate85.errors=vErrors;return errors===0;}exports.bc_zfield=validate86;const schema91={"type":"object","properties":{},"required":[],"$id":"bc_zfield"};function validate86(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="bc_zfield" */;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++;}validate86.errors=vErrors;return errors===0;}exports.bc_zform=validate87;const schema92={"type":"object","properties":{"moduleName":{"type":"string"},"departmentId":{"type":"string"},"mode":{"type":"string","enum":["create","edit"]},"recordId":{"type":["string","null"]},"disableGetClientActions":{"type":"boolean"},"disableCreateRecord":{"type":"boolean"},"disableDependencyMapping":{"type":"boolean"},"disableValidationRule":{"type":"boolean"},"disableLayoutRule":{"type":"boolean"},"customValidators":{"type":"object"}},"required":["moduleName"],"$id":"bc_zform"};function validate87(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="bc_zform" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.moduleName===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"moduleName"},message:"must have required property '"+"moduleName"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.moduleName!==undefined){if(typeof data.moduleName!=="string"){const err1={instancePath:instancePath+"/moduleName",schemaPath:"#/properties/moduleName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}}if(data.departmentId!==undefined){if(typeof data.departmentId!=="string"){const err2={instancePath:instancePath+"/departmentId",schemaPath:"#/properties/departmentId/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}}if(data.mode!==undefined){let data2=data.mode;if(typeof data2!=="string"){const err3={instancePath:instancePath+"/mode",schemaPath:"#/properties/mode/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}if(!(data2==="create"||data2==="edit")){const err4={instancePath:instancePath+"/mode",schemaPath:"#/properties/mode/enum",keyword:"enum",params:{allowedValues:schema92.properties.mode.enum},message:"must be equal to one of the allowed values"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.recordId!==undefined){let data3=data.recordId;if(typeof data3!=="string"&&data3!==null){const err5={instancePath:instancePath+"/recordId",schemaPath:"#/properties/recordId/type",keyword:"type",params:{type:schema92.properties.recordId.type},message:"must be string,null"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data.disableGetClientActions!==undefined){if(typeof data.disableGetClientActions!=="boolean"){const err6={instancePath:instancePath+"/disableGetClientActions",schemaPath:"#/properties/disableGetClientActions/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.disableCreateRecord!==undefined){if(typeof data.disableCreateRecord!=="boolean"){const err7={instancePath:instancePath+"/disableCreateRecord",schemaPath:"#/properties/disableCreateRecord/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}}if(data.disableDependencyMapping!==undefined){if(typeof data.disableDependencyMapping!=="boolean"){const err8={instancePath:instancePath+"/disableDependencyMapping",schemaPath:"#/properties/disableDependencyMapping/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}if(data.disableValidationRule!==undefined){if(typeof data.disableValidationRule!=="boolean"){const err9={instancePath:instancePath+"/disableValidationRule",schemaPath:"#/properties/disableValidationRule/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}if(data.disableLayoutRule!==undefined){if(typeof data.disableLayoutRule!=="boolean"){const err10={instancePath:instancePath+"/disableLayoutRule",schemaPath:"#/properties/disableLayoutRule/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}}if(data.customValidators!==undefined){let data9=data.customValidators;if(!(data9&&typeof data9=="object"&&!Array.isArray(data9))){const err11={instancePath:instancePath+"/customValidators",schemaPath:"#/properties/customValidators/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}}}else{const err12={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}validate87.errors=vErrors;return errors===0;}exports.bc_zhttp=validate88;const schema93={"type":"object","properties":{"headers":{"type":"object"}},"required":[],"$id":"bc_zhttp"};function validate88(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="bc_zhttp" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.headers!==undefined){let data0=data.headers;if(!(data0&&typeof data0=="object"&&!Array.isArray(data0))){const err0={instancePath:instancePath+"/headers",schemaPath:"#/properties/headers/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}}}else{const err1={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}validate88.errors=vErrors;return errors===0;}exports.bc_zlist=validate89;const schema94={"type":"object","properties":{"moduleName":{"type":"string"},"departmentId":{"type":"string"},"viewId":{"type":"string"},"query":{"type":"object"},"sortBy":{"type":"string","oneOf":[{"pattern":"^-.*"},{"not":{"pattern":"^-.*"}}]}},"required":["moduleName","departmentId","viewId"],"$id":"bc_zlist"};const pattern2=new RegExp("^-.*","u");function validate89(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="bc_zlist" */;let vErrors=null;let errors=0;if(data&&typeof data=="object"&&!Array.isArray(data)){if(data.moduleName===undefined){const err0={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"moduleName"},message:"must have required property '"+"moduleName"+"'"};if(vErrors===null){vErrors=[err0];}else{vErrors.push(err0);}errors++;}if(data.departmentId===undefined){const err1={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"departmentId"},message:"must have required property '"+"departmentId"+"'"};if(vErrors===null){vErrors=[err1];}else{vErrors.push(err1);}errors++;}if(data.viewId===undefined){const err2={instancePath,schemaPath:"#/required",keyword:"required",params:{missingProperty:"viewId"},message:"must have required property '"+"viewId"+"'"};if(vErrors===null){vErrors=[err2];}else{vErrors.push(err2);}errors++;}if(data.moduleName!==undefined){if(typeof data.moduleName!=="string"){const err3={instancePath:instancePath+"/moduleName",schemaPath:"#/properties/moduleName/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err3];}else{vErrors.push(err3);}errors++;}}if(data.departmentId!==undefined){if(typeof data.departmentId!=="string"){const err4={instancePath:instancePath+"/departmentId",schemaPath:"#/properties/departmentId/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err4];}else{vErrors.push(err4);}errors++;}}if(data.viewId!==undefined){if(typeof data.viewId!=="string"){const err5={instancePath:instancePath+"/viewId",schemaPath:"#/properties/viewId/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err5];}else{vErrors.push(err5);}errors++;}}if(data.query!==undefined){let data3=data.query;if(!(data3&&typeof data3=="object"&&!Array.isArray(data3))){const err6={instancePath:instancePath+"/query",schemaPath:"#/properties/query/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err6];}else{vErrors.push(err6);}errors++;}}if(data.sortBy!==undefined){let data4=data.sortBy;if(typeof data4!=="string"){const err7={instancePath:instancePath+"/sortBy",schemaPath:"#/properties/sortBy/type",keyword:"type",params:{type:"string"},message:"must be string"};if(vErrors===null){vErrors=[err7];}else{vErrors.push(err7);}errors++;}const _errs11=errors;let valid1=false;let passing0=null;const _errs12=errors;if(typeof data4==="string"){if(!pattern2.test(data4)){const err8={instancePath:instancePath+"/sortBy",schemaPath:"#/properties/sortBy/oneOf/0/pattern",keyword:"pattern",params:{pattern:"^-.*"},message:"must match pattern \""+"^-.*"+"\""};if(vErrors===null){vErrors=[err8];}else{vErrors.push(err8);}errors++;}}var _valid0=_errs12===errors;if(_valid0){valid1=true;passing0=0;}const _errs13=errors;const _errs14=errors;const _errs15=errors;if(typeof data4==="string"){if(!pattern2.test(data4)){const err9={};if(vErrors===null){vErrors=[err9];}else{vErrors.push(err9);}errors++;}}var valid2=_errs15===errors;if(valid2){const err10={instancePath:instancePath+"/sortBy",schemaPath:"#/properties/sortBy/oneOf/1/not",keyword:"not",params:{},message:"must NOT be valid"};if(vErrors===null){vErrors=[err10];}else{vErrors.push(err10);}errors++;}else{errors=_errs14;if(vErrors!==null){if(_errs14){vErrors.length=_errs14;}else{vErrors=null;}}}var _valid0=_errs13===errors;if(_valid0&&valid1){valid1=false;passing0=[passing0,1];}else{if(_valid0){valid1=true;passing0=1;}}if(!valid1){const err11={instancePath:instancePath+"/sortBy",schemaPath:"#/properties/sortBy/oneOf",keyword:"oneOf",params:{passingSchemas:passing0},message:"must match exactly one schema in oneOf"};if(vErrors===null){vErrors=[err11];}else{vErrors.push(err11);}errors++;}else{errors=_errs11;if(vErrors!==null){if(_errs11){vErrors.length=_errs11;}else{vErrors=null;}}}}}else{const err12={instancePath,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"};if(vErrors===null){vErrors=[err12];}else{vErrors.push(err12);}errors++;}validate89.errors=vErrors;return errors===0;}exports.bc_zrecord=validate90;const schema95={"type":"object","properties":{},"required":[],"$id":"bc_zrecord"};function validate90(data){let{instancePath="",parentData,parentDataProperty,rootData=data}=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};/*# sourceURL="bc_zrecord" */;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++;}validate90.errors=vErrors;return errors===0;}