I\'m working on an XSD file and when validating an XML file with it I want to restrict empty elements. Eg.,
this is not empty
You can have minOccurs="0" to require the tag, then have a validation regex that checks for one or more characters.
minOccurs="0"