I’m trying to figure out a solution where I need to drop the xml tags for some of the optional fields if they’re null in the XML.
Basically, I am getting schema validation error for optional fields ( The property says allow null false and required is false ) but when there is no value the IS is treating it as a null value and throwing schema validation error.
How to avoid this situation and drop the xml tags for optional fields. Please let me know.