1<?xml version="1.0" encoding="UTF-8"?>
2<ns1:getSedansResponse xmlns:ns1="http://server.type_substitution.fromjava/">
3    <return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns1:toyota">
4        <make>Toyota</make><model>Camry</model><year>1998</year><color>white</color>
5    </return>
6    <!-- specify wrong xsi type to introduce a validation error -->
7    <return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns1:car">
8        <make>Toyota</make><model>Corolla</model><year>1999</year><color>red</color>
9    </return>
10</ns1:getSedansResponse>
11