I've been looking for similar issue but did not find.
I have an XML file that looks like this :
<Deed DeedStatus="N"
CompanyName="Test Value"
xmlns="schemas/deedv2">
and the deedv2 XSD :
<xs:simpleType name="DeedStatusType">
<xs:restriction base="xs:string">
<xs:enumeration value="N">
<xs:annotation>
<xs:documentation>
Testingg
</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
I'm trying to use convert the "N" value to appear as "Testing" in another XML. Is there a way I can do this without writing code? Thank you in advance.