1<?xml version="1.0" encoding="UTF-8"?> 2<definitions xmlns="http://example.org/defn/" xmlns:tns="http://hello.org/base" 3 xmlns:ns1="http://hello.org/plug" xmlns:ns2="http://hello.org/types"> 4 <types> 5 <!-- Below: default + tns changed, ns1 unaffected, ns2 same, xsi new --> 6 <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://hello.org/types" 7 xmlns:ns2="http://hello.org/types" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 8 targetNamespace="http://hello.org/types"> 9 <complexType name="Hobbies"> 10 <sequence> 11 <element name="name" type="tns:Name"/> 12 <element name="detail" type="string"/> 13 <element name="places" type="ns2:collection"/> 14 <element name="hobby" type="ns2:vector"/> 15 </sequence> 16 </complexType> 17 </schema> 18 </types> 19</definitions>