The question here is – is it possible to import subset of types from an xsd?
Consider following example :
A.xsd contains three type a,b,c
And B.xsd contains two types d,e.
When I import A.xsd in B.xsd like following :
<xs:import namespace="http://www.abc.com/schema/aaa" schemaLocation="A.xsd"/>
I get all three types –a,b and c. I just want type a in B.xsd . I want to exclude type b and c in the xsd. Is it possible to do that ? If yes what are the options ?
Thanks
PC
No you can’t do it. But why would you want to? Surplus unused types surely do no harm?