Tagged Questions
2
votes
3answers
825 views
XML: attributes or children?
In XSD, SOAP and other XML conventions you'll often see things like:
<book>
<title>Harry Potter</title>
<author>J.K. Rowling</author>
</book>
Now I'm ...
0
votes
2answers
26 views
RegEx for specified string length range : XSD attribute element
I'm trying to restrict an attribute element of a schema to be between 3 and 20 characters long, but I'm getting an error saying my RegEx is invalid:
<xs:attribute name="name" use="required">
...
0
votes
3answers
71 views
XML schema; multiple from a list of valid attribute values
I'm reasonably new to working with XML schemas, so excuse my incompetence if this is more trivial than I myself believe it must be.
I'm trying to create a required attribute that must contain 1 or ...
0
votes
1answer
10 views
specify allowed attributes as delimited string in another attribute in XSD
I am confused about how to design xml schema when attributes of an element must have names from those listed in an attribute of another element.
a valid example:
<A ...