Reputation: 21178
I have the following:
<xs:attribute name="CarTitleID" type="xs:long" use="optional" />
In my source XML I want to allow people to say
<car CarTitleID="">
And have the XSD not fail. Is this possible?
Upvotes: 1
Views: 831
Reputation: 75794
IIRC this sort of thing is intended to be handled by nillable types but the implementation is not very practical ultimately.
Upvotes: 2