I need to mark some elements as non required in the XSD schema. How do I go about figuring out which elements are marked as required, is there any particular flag I should be searching for. Currently all of my elements are marked with minOccurs="0", is this what needs to be changed?
I need to mark some elements as non required in the XSD schema. How
Share
Yes.
minOccurs="0"is what you need to add to an element as optional.Having no
minOccursattribute implies mandatory (since by defaultminOccurs="1")