Hi @Parm2 ,
The error message indicates that the data type of the incoming value for eVar62 is a Boolean (true/false), but the schema is expecting a string. If the source of the data is coming from a data layer or some other dynamic source, it may be that somewhere in your pipeline the data is being converted to a Boolean before it reaches Adobe.
Verify the actual data type of eVar62 in the data layer or the source where you are getting the values from. If the source itself is providing Boolean values, then you may need to convert these to strings before they are passed to Adobe.
Inspect your data pipeline: Look for any transformations or processing steps that might be changing the data type of eVar62 before it reaches Adobe. This could include any middleware, data processing scripts, or even a function in the Web SDK.
If you can't find where the data type is being changed, or it's not feasible to change it before it reaches the Web SDK, you could potentially modify your Web SDK implementation to explicitly convert the value of eVar62 to a string before passing it.
var eVar62Value = dataLayer.get("eVar62");
alloy("event", {"eVar62": String(eVar62Value)});
In the above, String(eVar62Value) will convert the Boolean eVar62Value to a string ("true" or "false"), which should be compatible with your schema.
Hope this resolves your issue.
Thanks
Madhan