home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / WindowsServerTrial / server.iso / sources / install.wim / 2 / Windows / security / KBRegistrationInfo.xsd < prev    next >
Extensible Markup Language  |  2008-01-19  |  1KB  |  26 lines

  1. <?xml version="1.0"?>
  2. <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" 
  3.            xmlns:xs="http://www.w3.org/2001/XMLSchema">
  4.  
  5.     <xs:include schemaLocation="KB.xsd"/>
  6.   
  7.     <!-- -->
  8.     <!-- KB Registration Info Type -->
  9.     <!-- -->
  10.     <xs:element name="SCWKBRegistrationInfo" type="KBRegistrationInfoType"/>
  11.  
  12.     <xs:complexType name="KBRegistrationInfoType">
  13.         <xs:sequence>
  14.             <xs:element name="SCWKnowledgeBase" type="KBDataType" 
  15.                         minOccurs="1" maxOccurs="1"/>
  16.             <xs:element name="SCWLocalization" type="KBLocalizationDataType" 
  17.                         minOccurs="0" maxOccurs="unbounded"/>
  18.         </xs:sequence>
  19.         <xs:attribute name="OSMajorVersion" type="xs:integer" use="required"/>
  20.         <xs:attribute name="OSMinorVersion" type="xs:integer" use="required"/>
  21.         <xs:attribute name="ServicePackMajorVersion" type="xs:integer" use="required"/>
  22.         <xs:attribute name="ServicePackMinorVersion" type="xs:integer" use="required"/>
  23.     </xs:complexType>
  24.  
  25. </xs:schema>
  26.