2.2.4.5 LocalePreferencesType

The complex type rm:LocalePreferencesType MUST include one element rm:LocalePreference, defined in this section. The element rm:LocalePreference MUST include two elements, rm:Locale and rm:PreferenceValue.

  
 rm:LocalePreference/rm:Locale

The element rm:LocalePreference MUST include element rm:Locale as a child. The element rm:Locale MUST be set to the string literal "en-US".

  
 rm:LocalePreference/rm:PreferenceValue

The element rm:LocalePreference MUST include element rm:PreferenceValue as a child. The element rm:PreferenceValue MUST be set to the string literal "0".

 <?xml version="1.0" encoding="utf-8"?>
 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://schemas.microsoft.com/2006/11/ResourceManagement">
   <xs:complexType name="LocalePreferencesType">
     <xs:sequence>
       <xs:element name="LocalePreference" minOccurs="1" maxOccurs="1">
         <xs:complexType>
           <xs:sequence>
             <xs:element name="Locale">
               <xs:simpleType>
                 <xs:restriction base="xs:string">
                   <xs:enumeration value="en-US"/>
                 </xs:restriction>
               </xs:simpleType>
             </xs:element>
             <xs:element name="PreferenceValue">
               <xs:simpleType>
                 <xs:restriction base="xs:string">
                   <xs:enumeration value="0"/>
                 </xs:restriction>
               </xs:simpleType>
             </xs:element>
           </xs:sequence>
         </xs:complexType>
       </xs:element>
     </xs:sequence>
   </xs:complexType>
 </xs:schema>