I have tried to validate with xml against xsd using node module libxmljs(https://github.com/libxmljs/libxmljs/wiki#validating-against-xsd-schema) .So if element is mandatory in xsd but in xml element does not have any value ,it is empty then I should get error saying that Missing Element ,For example,
XSD:
<xsd:complexType name="ContractSummaryComplexType">
xsd:sequence
<xsd:element name="SvcAgreementID" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
XML:
<SvcAgreementID></SvcAgreementID>
Please help me to do this.
Thanks
Assiming MyContractSummaryComplex is an instance of ContractSummaryComplexType
The following should raise an error
The following are valid
Note
<SvcAgreementID></SvcAgreementID>
is saying here is an elementSvcAgreementID
with an empty string as its contents.If you want to enforce a rule saying SvcAgreementID should contain at least 1 char then you need something like this