9.4 DeleteContact Schema

 <?xml version="1.0" ?>
 <xs:schema id="DeleteContact" version="2.0" 
            elementFormDefault="qualified"
  targetNamespace=
       "http://schemas.microsoft.com/sip/types/deletecontact/" 
  xmlns:tns=
       "http://schemas.microsoft.com/sip/types/deletecontact/" 
  xmlns:ct="http://schemas.microsoft.com/sip/types" 
   xmlns:xs="http://www.w3.org/2001/XMLSchema">
  
   <xs:import namespace="http://schemas.microsoft.com/sip/types" 
              schemaLocation="contact.xsd" />
  
   <xs:annotation>
     <xs:documentation>
       Users can delete contacts from their contact list by sending a 
       SIP SERVICE request to their Live Communications Server. 
       The content of this SERVICE request is a SOAP request. The 
       body of the SOAP request contains an XML instance conforming 
       to the structure specified in this schema.
     </xs:documentation>
   </xs:annotation>
  
   <xs:complexType name="DeleteContact">
       <xs:sequence>
         <xs:element name="URI" type="ct:sipURI" />
       </xs:sequence>
   </xs:complexType>
  
   <xs:element name="deleteContact" type="tns:DeleteContact" />
 </xs:schema>