In your xml wisdom, have you a idea on how to define the type for “bDead”
to be? (type=”xs:Boolean”
)
<bDead>0
<xdn>state</xdn>
<xdv>alive</xdv>
</bDead>
Here’s the schema. Where/how would I specify the type and ranges for bdead? I don’t think that I can..
<xs:element name="bDead" >
<xs:complexType mixed="true">
<xs:sequence>
<xs:element name="xdn" type="xs:string" />
<xs:element name="xdv" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element