I have a WSDL with certain types. Some items accept item lists and service returns. I also have items with a list of values ββ(or other items).
As a result, I have some magic numbers in XSD (for example, minOccurs = "10", maxOccurs = "250", etc.). These values ββare 10, 250, etc. Repeated in all XSD types.
Is there a way to declare them as a kind of constant? and then reuse them by name for the minOccurs and maxOccurs attributes?
source
share