test2.xsd
上传用户:hbhltzc
上传日期:2022-06-04
资源大小:1925k
文件大小:28k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" 
  3.            xmlns:xs="http://www.w3.org/2001/XMLSchema" 
  4.            xmlns:vs="http://schemas.microsoft.com/Visual-Studio-Intellisense">
  5.   <xs:element name="Basket">
  6.     <xs:annotation>
  7.       <xs:documentation>This is a sample schema that demonstrates the various types of intellisense supported by XML Notepad 2007.</xs:documentation>
  8.     </xs:annotation>
  9.     <xs:complexType>
  10.       <xs:sequence maxOccurs="2">
  11.         <xs:element name="color" type="color" />
  12.         <xs:element name="date" type="xs:date" />
  13.         <xs:element name="dateTime" type="xs:dateTime" />
  14.         <xs:element name="photo" type="xs:anyURI"/>
  15.         <xs:choice maxOccurs="5">
  16.           <xs:element name="fruit" type="fruits" />
  17.           <xs:element name="vegetable" type="veges" />
  18.           <xs:element name="berry" type="berries" />
  19.           <xs:element name="font" type="font" />
  20.         </xs:choice>
  21.         <xs:element name="weight" type="xs:decimal" />
  22.       </xs:sequence>
  23.       <xs:attribute name="language" type="xs:language" />
  24.       <xs:attribute name="sold" type="xs:boolean" />
  25.       <xs:attribute name="time" type="xs:time" />
  26.     </xs:complexType>
  27.   </xs:element>
  28.   <xs:simpleType name="fruits">
  29.     <xs:restriction base="xs:string">
  30.       <xs:enumeration value="apricot" />
  31.       <xs:enumeration value="banana" />
  32.       <xs:enumeration value="grape" />
  33.       <xs:enumeration value="nectrine" />
  34.       <xs:enumeration value="peach" />
  35.       <xs:enumeration value="pear" />
  36.       <xs:enumeration value="pineapple" />
  37.       <xs:enumeration value="plum" />
  38.     </xs:restriction>
  39.   </xs:simpleType>
  40.   <!-- test that we can find enumerations hidden deep inside complex type extensions -->
  41.   <xs:complexType name="vege">
  42.     <xs:complexContent>
  43.       <xs:extension base="vege2"></xs:extension>
  44.     </xs:complexContent>
  45.   </xs:complexType>
  46.   <xs:complexType name="vege2">
  47.     <xs:simpleContent>
  48.       <xs:extension base="veges"></xs:extension>
  49.     </xs:simpleContent>
  50.   </xs:complexType>
  51.   <xs:simpleType name="veges">
  52.     <xs:restriction base="xs:string">
  53.       <xs:enumeration value="carrot" />
  54.       <xs:enumeration value="cantelope" />
  55.       <xs:enumeration value="corn" />
  56.       <xs:enumeration value="cucumber" />
  57.       <xs:enumeration value="egg plant" />
  58.       <xs:enumeration value="lettuce" />
  59.       <xs:enumeration value="potato" />
  60.       <xs:enumeration value="pumpkin" />
  61.       <xs:enumeration value="squash" />
  62.       <xs:enumeration value="tomato" />
  63.       <xs:enumeration value="yam" />
  64.       <xs:enumeration value="zucchini" />
  65.       <xs:enumeration value="watermelon" />
  66.     </xs:restriction>
  67.   </xs:simpleType>
  68.   <xs:simpleType name="berries">
  69.     <!-- test list of simple types-->
  70.     <xs:list>
  71.       <xs:simpleType>
  72.         <xs:restriction base="xs:string">
  73.           <xs:enumeration value="blackberry" />
  74.           <xs:enumeration value="blueberry" />
  75.           <xs:enumeration value="cranberry" />
  76.           <xs:enumeration value="huckleberry" />
  77.           <xs:enumeration value="strawberry" />
  78.         </xs:restriction>
  79.       </xs:simpleType>
  80.     </xs:list>
  81.   </xs:simpleType>
  82.   <xs:simpleType name="color" vs:builder="XmlNotepad.ColorBuilder">
  83.     <xs:annotation>
  84.       <xs:documentation>This is the color of the basket.</xs:documentation>
  85.     </xs:annotation>    <xs:union>
  86.       <xs:simpleType>
  87.         <xs:restriction base="xs:string">
  88.           <xs:pattern value="(s*)d+(s*),(s*)d+(s*),(s*)d+(s*)"/>
  89.         </xs:restriction>
  90.       </xs:simpleType>
  91.       <xs:simpleType>
  92.         <xs:restriction base="colors">
  93.         </xs:restriction>
  94.       </xs:simpleType>
  95.     </xs:union>
  96.   </xs:simpleType>
  97.   <xs:simpleType name="colors">
  98.     <xs:restriction base="xs:string">
  99.       <xs:enumeration value='AliceBlue'>
  100.         <xs:annotation>
  101.           <xs:documentation>#F0F8FF</xs:documentation>
  102.         </xs:annotation>
  103.       </xs:enumeration>
  104.       <xs:enumeration value='AntiqueWhite'>
  105.         <xs:annotation>
  106.           <xs:documentation>#FAEBD7</xs:documentation>
  107.         </xs:annotation>
  108.       </xs:enumeration>
  109.       <xs:enumeration value='Aqua'>
  110.         <xs:annotation>
  111.           <xs:documentation>#00FFFF</xs:documentation>
  112.         </xs:annotation>
  113.       </xs:enumeration>
  114.       <xs:enumeration value='Aquamarine'>
  115.         <xs:annotation>
  116.           <xs:documentation>#7FFFD4</xs:documentation>
  117.         </xs:annotation>
  118.       </xs:enumeration>
  119.       <xs:enumeration value='Azure'>
  120.         <xs:annotation>
  121.           <xs:documentation>#F0FFFF</xs:documentation>
  122.         </xs:annotation>
  123.       </xs:enumeration>
  124.       <xs:enumeration value='Beige'>
  125.         <xs:annotation>
  126.           <xs:documentation>#F5F5DC</xs:documentation>
  127.         </xs:annotation>
  128.       </xs:enumeration>
  129.       <xs:enumeration value='Bisque'>
  130.         <xs:annotation>
  131.           <xs:documentation>#FFE4C4</xs:documentation>
  132.         </xs:annotation>
  133.       </xs:enumeration>
  134.       <xs:enumeration value='Black'>
  135.         <xs:annotation>
  136.           <xs:documentation>#000000</xs:documentation>
  137.         </xs:annotation>
  138.       </xs:enumeration>
  139.       <xs:enumeration value='BlanchedAlmond'>
  140.         <xs:annotation>
  141.           <xs:documentation>#FFEBCD</xs:documentation>
  142.         </xs:annotation>
  143.       </xs:enumeration>
  144.       <xs:enumeration value='Blue'>
  145.         <xs:annotation>
  146.           <xs:documentation>#0000FF</xs:documentation>
  147.         </xs:annotation>
  148.       </xs:enumeration>
  149.       <xs:enumeration value='BlueViolet'>
  150.         <xs:annotation>
  151.           <xs:documentation>#8A2BE2</xs:documentation>
  152.         </xs:annotation>
  153.       </xs:enumeration>
  154.       <xs:enumeration value='Brown'>
  155.         <xs:annotation>
  156.           <xs:documentation>#A52A2A</xs:documentation>
  157.         </xs:annotation>
  158.       </xs:enumeration>
  159.       <xs:enumeration value='BurlyWood'>
  160.         <xs:annotation>
  161.           <xs:documentation>#DEB887</xs:documentation>
  162.         </xs:annotation>
  163.       </xs:enumeration>
  164.       <xs:enumeration value='CadetBlue'>
  165.         <xs:annotation>
  166.           <xs:documentation>#5F9EA0</xs:documentation>
  167.         </xs:annotation>
  168.       </xs:enumeration>
  169.       <xs:enumeration value='Chartreuse'>
  170.         <xs:annotation>
  171.           <xs:documentation>#7FFF00</xs:documentation>
  172.         </xs:annotation>
  173.       </xs:enumeration>
  174.       <xs:enumeration value='Chocolate'>
  175.         <xs:annotation>
  176.           <xs:documentation>#D2691E</xs:documentation>
  177.         </xs:annotation>
  178.       </xs:enumeration>
  179.       <xs:enumeration value='Coral'>
  180.         <xs:annotation>
  181.           <xs:documentation>#FF7F50</xs:documentation>
  182.         </xs:annotation>
  183.       </xs:enumeration>
  184.       <xs:enumeration value='CornflowerBlue'>
  185.         <xs:annotation>
  186.           <xs:documentation>#6495ED</xs:documentation>
  187.         </xs:annotation>
  188.       </xs:enumeration>
  189.       <xs:enumeration value='Cornsilk'>
  190.         <xs:annotation>
  191.           <xs:documentation>#FFF8DC</xs:documentation>
  192.         </xs:annotation>
  193.       </xs:enumeration>
  194.       <xs:enumeration value='Crimson'>
  195.         <xs:annotation>
  196.           <xs:documentation>#DC143C</xs:documentation>
  197.         </xs:annotation>
  198.       </xs:enumeration>
  199.       <xs:enumeration value='Cyan'>
  200.         <xs:annotation>
  201.           <xs:documentation>#00FFFF</xs:documentation>
  202.         </xs:annotation>
  203.       </xs:enumeration>
  204.       <xs:enumeration value='DarkBlue'>
  205.         <xs:annotation>
  206.           <xs:documentation>#00008B</xs:documentation>
  207.         </xs:annotation>
  208.       </xs:enumeration>
  209.       <xs:enumeration value='DarkCyan'>
  210.         <xs:annotation>
  211.           <xs:documentation>#008B8B</xs:documentation>
  212.         </xs:annotation>
  213.       </xs:enumeration>
  214.       <xs:enumeration value='DarkGoldenrod'>
  215.         <xs:annotation>
  216.           <xs:documentation>#B8860B</xs:documentation>
  217.         </xs:annotation>
  218.       </xs:enumeration>
  219.       <xs:enumeration value='DarkGray'>
  220.         <xs:annotation>
  221.           <xs:documentation>#A9A9A9</xs:documentation>
  222.         </xs:annotation>
  223.       </xs:enumeration>
  224.       <xs:enumeration value='DarkGreen'>
  225.         <xs:annotation>
  226.           <xs:documentation>#006400</xs:documentation>
  227.         </xs:annotation>
  228.       </xs:enumeration>
  229.       <xs:enumeration value='DarkKhaki'>
  230.         <xs:annotation>
  231.           <xs:documentation>#BDB76B</xs:documentation>
  232.         </xs:annotation>
  233.       </xs:enumeration>
  234.       <xs:enumeration value='DarkMagenta'>
  235.         <xs:annotation>
  236.           <xs:documentation>#8B008B</xs:documentation>
  237.         </xs:annotation>
  238.       </xs:enumeration>
  239.       <xs:enumeration value='DarkOliveGreen'>
  240.         <xs:annotation>
  241.           <xs:documentation>#556B2F</xs:documentation>
  242.         </xs:annotation>
  243.       </xs:enumeration>
  244.       <xs:enumeration value='DarkOrange'>
  245.         <xs:annotation>
  246.           <xs:documentation>#FF8C00</xs:documentation>
  247.         </xs:annotation>
  248.       </xs:enumeration>
  249.       <xs:enumeration value='DarkOrchid'>
  250.         <xs:annotation>
  251.           <xs:documentation>#9932CC</xs:documentation>
  252.         </xs:annotation>
  253.       </xs:enumeration>
  254.       <xs:enumeration value='DarkRed'>
  255.         <xs:annotation>
  256.           <xs:documentation>#8B0000</xs:documentation>
  257.         </xs:annotation>
  258.       </xs:enumeration>
  259.       <xs:enumeration value='DarkSalmon'>
  260.         <xs:annotation>
  261.           <xs:documentation>#E9967A</xs:documentation>
  262.         </xs:annotation>
  263.       </xs:enumeration>
  264.       <xs:enumeration value='DarkSeaGreen'>
  265.         <xs:annotation>
  266.           <xs:documentation>#8FBC8B</xs:documentation>
  267.         </xs:annotation>
  268.       </xs:enumeration>
  269.       <xs:enumeration value='DarkSlateBlue'>
  270.         <xs:annotation>
  271.           <xs:documentation>#483D8B</xs:documentation>
  272.         </xs:annotation>
  273.       </xs:enumeration>
  274.       <xs:enumeration value='DarkSlateGray'>
  275.         <xs:annotation>
  276.           <xs:documentation>#2F4F4F</xs:documentation>
  277.         </xs:annotation>
  278.       </xs:enumeration>
  279.       <xs:enumeration value='DarkTurquoise'>
  280.         <xs:annotation>
  281.           <xs:documentation>#00CED1</xs:documentation>
  282.         </xs:annotation>
  283.       </xs:enumeration>
  284.       <xs:enumeration value='DarkViolet'>
  285.         <xs:annotation>
  286.           <xs:documentation>#9400D3</xs:documentation>
  287.         </xs:annotation>
  288.       </xs:enumeration>
  289.       <xs:enumeration value='DeepPink'>
  290.         <xs:annotation>
  291.           <xs:documentation>#FF1493</xs:documentation>
  292.         </xs:annotation>
  293.       </xs:enumeration>
  294.       <xs:enumeration value='DeepSkyBlue'>
  295.         <xs:annotation>
  296.           <xs:documentation>#00BFFF</xs:documentation>
  297.         </xs:annotation>
  298.       </xs:enumeration>
  299.       <xs:enumeration value='DimGray'>
  300.         <xs:annotation>
  301.           <xs:documentation>#696969</xs:documentation>
  302.         </xs:annotation>
  303.       </xs:enumeration>
  304.       <xs:enumeration value='DodgerBlue'>
  305.         <xs:annotation>
  306.           <xs:documentation>#1E90FF</xs:documentation>
  307.         </xs:annotation>
  308.       </xs:enumeration>
  309.       <xs:enumeration value='Firebrick'>
  310.         <xs:annotation>
  311.           <xs:documentation>#B22222</xs:documentation>
  312.         </xs:annotation>
  313.       </xs:enumeration>
  314.       <xs:enumeration value='FloralWhite'>
  315.         <xs:annotation>
  316.           <xs:documentation>#FFFAF0</xs:documentation>
  317.         </xs:annotation>
  318.       </xs:enumeration>
  319.       <xs:enumeration value='ForestGreen'>
  320.         <xs:annotation>
  321.           <xs:documentation>#228B22</xs:documentation>
  322.         </xs:annotation>
  323.       </xs:enumeration>
  324.       <xs:enumeration value='Fuchsia'>
  325.         <xs:annotation>
  326.           <xs:documentation>#FF00FF</xs:documentation>
  327.         </xs:annotation>
  328.       </xs:enumeration>
  329.       <xs:enumeration value='Gainsboro'>
  330.         <xs:annotation>
  331.           <xs:documentation>#DCDCDC</xs:documentation>
  332.         </xs:annotation>
  333.       </xs:enumeration>
  334.       <xs:enumeration value='GhostWhite'>
  335.         <xs:annotation>
  336.           <xs:documentation>#F8F8FF</xs:documentation>
  337.         </xs:annotation>
  338.       </xs:enumeration>
  339.       <xs:enumeration value='Gold'>
  340.         <xs:annotation>
  341.           <xs:documentation>#FFD700</xs:documentation>
  342.         </xs:annotation>
  343.       </xs:enumeration>
  344.       <xs:enumeration value='Goldenrod'>
  345.         <xs:annotation>
  346.           <xs:documentation>#DAA520</xs:documentation>
  347.         </xs:annotation>
  348.       </xs:enumeration>
  349.       <xs:enumeration value='Gray'>
  350.         <xs:annotation>
  351.           <xs:documentation>#808080</xs:documentation>
  352.         </xs:annotation>
  353.       </xs:enumeration>
  354.       <xs:enumeration value='Green'>
  355.         <xs:annotation>
  356.           <xs:documentation>#008000</xs:documentation>
  357.         </xs:annotation>
  358.       </xs:enumeration>
  359.       <xs:enumeration value='GreenYellow'>
  360.         <xs:annotation>
  361.           <xs:documentation>#ADFF2F</xs:documentation>
  362.         </xs:annotation>
  363.       </xs:enumeration>
  364.       <xs:enumeration value='Honeydew'>
  365.         <xs:annotation>
  366.           <xs:documentation>#F0FFF0</xs:documentation>
  367.         </xs:annotation>
  368.       </xs:enumeration>
  369.       <xs:enumeration value='HotPink'>
  370.         <xs:annotation>
  371.           <xs:documentation>#FF69B4</xs:documentation>
  372.         </xs:annotation>
  373.       </xs:enumeration>
  374.       <xs:enumeration value='IndianRed'>
  375.         <xs:annotation>
  376.           <xs:documentation>#CD5C5C</xs:documentation>
  377.         </xs:annotation>
  378.       </xs:enumeration>
  379.       <xs:enumeration value='Indigo'>
  380.         <xs:annotation>
  381.           <xs:documentation>#4B0082</xs:documentation>
  382.         </xs:annotation>
  383.       </xs:enumeration>
  384.       <xs:enumeration value='Ivory'>
  385.         <xs:annotation>
  386.           <xs:documentation>#FFFFF0</xs:documentation>
  387.         </xs:annotation>
  388.       </xs:enumeration>
  389.       <xs:enumeration value='Khaki'>
  390.         <xs:annotation>
  391.           <xs:documentation>#F0E68C</xs:documentation>
  392.         </xs:annotation>
  393.       </xs:enumeration>
  394.       <xs:enumeration value='Lavender'>
  395.         <xs:annotation>
  396.           <xs:documentation>#E6E6FA</xs:documentation>
  397.         </xs:annotation>
  398.       </xs:enumeration>
  399.       <xs:enumeration value='LavenderBlush'>
  400.         <xs:annotation>
  401.           <xs:documentation>#FFF0F5</xs:documentation>
  402.         </xs:annotation>
  403.       </xs:enumeration>
  404.       <xs:enumeration value='LawnGreen'>
  405.         <xs:annotation>
  406.           <xs:documentation>#7CFC00</xs:documentation>
  407.         </xs:annotation>
  408.       </xs:enumeration>
  409.       <xs:enumeration value='LemonChiffon'>
  410.         <xs:annotation>
  411.           <xs:documentation>#FFFACD</xs:documentation>
  412.         </xs:annotation>
  413.       </xs:enumeration>
  414.       <xs:enumeration value='LightBlue'>
  415.         <xs:annotation>
  416.           <xs:documentation>#ADD8E6</xs:documentation>
  417.         </xs:annotation>
  418.       </xs:enumeration>
  419.       <xs:enumeration value='LightCoral'>
  420.         <xs:annotation>
  421.           <xs:documentation>#F08080</xs:documentation>
  422.         </xs:annotation>
  423.       </xs:enumeration>
  424.       <xs:enumeration value='LightCyan'>
  425.         <xs:annotation>
  426.           <xs:documentation>#E0FFFF</xs:documentation>
  427.         </xs:annotation>
  428.       </xs:enumeration>
  429.       <xs:enumeration value='LightGoldenrodYellow'>
  430.         <xs:annotation>
  431.           <xs:documentation>#FAFAD2</xs:documentation>
  432.         </xs:annotation>
  433.       </xs:enumeration>
  434.       <xs:enumeration value='LightGreen'>
  435.         <xs:annotation>
  436.           <xs:documentation>#90EE90</xs:documentation>
  437.         </xs:annotation>
  438.       </xs:enumeration>
  439.       <xs:enumeration value='LightGray'>
  440.         <xs:annotation>
  441.           <xs:documentation>#D3D3D3</xs:documentation>
  442.         </xs:annotation>
  443.       </xs:enumeration>
  444.       <xs:enumeration value='LightPink'>
  445.         <xs:annotation>
  446.           <xs:documentation>#FFB6C1</xs:documentation>
  447.         </xs:annotation>
  448.       </xs:enumeration>
  449.       <xs:enumeration value='LightSalmon'>
  450.         <xs:annotation>
  451.           <xs:documentation>#FFA07A</xs:documentation>
  452.         </xs:annotation>
  453.       </xs:enumeration>
  454.       <xs:enumeration value='LightSeaGreen'>
  455.         <xs:annotation>
  456.           <xs:documentation>#20B2AA</xs:documentation>
  457.         </xs:annotation>
  458.       </xs:enumeration>
  459.       <xs:enumeration value='LightSkyBlue'>
  460.         <xs:annotation>
  461.           <xs:documentation>#87CEFA</xs:documentation>
  462.         </xs:annotation>
  463.       </xs:enumeration>
  464.       <xs:enumeration value='LightSlateGray'>
  465.         <xs:annotation>
  466.           <xs:documentation>#778899</xs:documentation>
  467.         </xs:annotation>
  468.       </xs:enumeration>
  469.       <xs:enumeration value='LightSteelBlue'>
  470.         <xs:annotation>
  471.           <xs:documentation>#B0C4DE</xs:documentation>
  472.         </xs:annotation>
  473.       </xs:enumeration>
  474.       <xs:enumeration value='LightYellow'>
  475.         <xs:annotation>
  476.           <xs:documentation>#FFFFE0</xs:documentation>
  477.         </xs:annotation>
  478.       </xs:enumeration>
  479.       <xs:enumeration value='Lime'>
  480.         <xs:annotation>
  481.           <xs:documentation>#00FF00</xs:documentation>
  482.         </xs:annotation>
  483.       </xs:enumeration>
  484.       <xs:enumeration value='LimeGreen'>
  485.         <xs:annotation>
  486.           <xs:documentation>#32CD32</xs:documentation>
  487.         </xs:annotation>
  488.       </xs:enumeration>
  489.       <xs:enumeration value='Linen'>
  490.         <xs:annotation>
  491.           <xs:documentation>#FAF0E6</xs:documentation>
  492.         </xs:annotation>
  493.       </xs:enumeration>
  494.       <xs:enumeration value='Magenta'>
  495.         <xs:annotation>
  496.           <xs:documentation>#FF00FF</xs:documentation>
  497.         </xs:annotation>
  498.       </xs:enumeration>
  499.       <xs:enumeration value='Maroon'>
  500.         <xs:annotation>
  501.           <xs:documentation>#800000</xs:documentation>
  502.         </xs:annotation>
  503.       </xs:enumeration>
  504.       <xs:enumeration value='MediumAquamarine'>
  505.         <xs:annotation>
  506.           <xs:documentation>#66CDAA</xs:documentation>
  507.         </xs:annotation>
  508.       </xs:enumeration>
  509.       <xs:enumeration value='MediumBlue'>
  510.         <xs:annotation>
  511.           <xs:documentation>#0000CD</xs:documentation>
  512.         </xs:annotation>
  513.       </xs:enumeration>
  514.       <xs:enumeration value='MediumOrchid'>
  515.         <xs:annotation>
  516.           <xs:documentation>#BA55D3</xs:documentation>
  517.         </xs:annotation>
  518.       </xs:enumeration>
  519.       <xs:enumeration value='MediumPurple'>
  520.         <xs:annotation>
  521.           <xs:documentation>#9370DB</xs:documentation>
  522.         </xs:annotation>
  523.       </xs:enumeration>
  524.       <xs:enumeration value='MediumSeaGreen'>
  525.         <xs:annotation>
  526.           <xs:documentation>#3CB371</xs:documentation>
  527.         </xs:annotation>
  528.       </xs:enumeration>
  529.       <xs:enumeration value='MediumSlateBlue'>
  530.         <xs:annotation>
  531.           <xs:documentation>#7B68EE</xs:documentation>
  532.         </xs:annotation>
  533.       </xs:enumeration>
  534.       <xs:enumeration value='MediumSpringGreen'>
  535.         <xs:annotation>
  536.           <xs:documentation>#00FA9A</xs:documentation>
  537.         </xs:annotation>
  538.       </xs:enumeration>
  539.       <xs:enumeration value='MediumTurquoise'>
  540.         <xs:annotation>
  541.           <xs:documentation>#48D1CC</xs:documentation>
  542.         </xs:annotation>
  543.       </xs:enumeration>
  544.       <xs:enumeration value='MediumVioletRed'>
  545.         <xs:annotation>
  546.           <xs:documentation>#C71585</xs:documentation>
  547.         </xs:annotation>
  548.       </xs:enumeration>
  549.       <xs:enumeration value='MidnightBlue'>
  550.         <xs:annotation>
  551.           <xs:documentation>#191970</xs:documentation>
  552.         </xs:annotation>
  553.       </xs:enumeration>
  554.       <xs:enumeration value='MintCream'>
  555.         <xs:annotation>
  556.           <xs:documentation>#F5FFFA</xs:documentation>
  557.         </xs:annotation>
  558.       </xs:enumeration>
  559.       <xs:enumeration value='MistyRose'>
  560.         <xs:annotation>
  561.           <xs:documentation>#FFE4E1</xs:documentation>
  562.         </xs:annotation>
  563.       </xs:enumeration>
  564.       <xs:enumeration value='Moccasin'>
  565.         <xs:annotation>
  566.           <xs:documentation>#FFE4B5</xs:documentation>
  567.         </xs:annotation>
  568.       </xs:enumeration>
  569.       <xs:enumeration value='NavajoWhite'>
  570.         <xs:annotation>
  571.           <xs:documentation>#FFDEAD</xs:documentation>
  572.         </xs:annotation>
  573.       </xs:enumeration>
  574.       <xs:enumeration value='Navy'>
  575.         <xs:annotation>
  576.           <xs:documentation>#000080</xs:documentation>
  577.         </xs:annotation>
  578.       </xs:enumeration>
  579.       <xs:enumeration value='OldLace'>
  580.         <xs:annotation>
  581.           <xs:documentation>#FDF5E6</xs:documentation>
  582.         </xs:annotation>
  583.       </xs:enumeration>
  584.       <xs:enumeration value='Olive'>
  585.         <xs:annotation>
  586.           <xs:documentation>#808000</xs:documentation>
  587.         </xs:annotation>
  588.       </xs:enumeration>
  589.       <xs:enumeration value='OliveDrab'>
  590.         <xs:annotation>
  591.           <xs:documentation>#6B8E23</xs:documentation>
  592.         </xs:annotation>
  593.       </xs:enumeration>
  594.       <xs:enumeration value='Orange'>
  595.         <xs:annotation>
  596.           <xs:documentation>#FFA500</xs:documentation>
  597.         </xs:annotation>
  598.       </xs:enumeration>
  599.       <xs:enumeration value='OrangeRed'>
  600.         <xs:annotation>
  601.           <xs:documentation>#FF4500</xs:documentation>
  602.         </xs:annotation>
  603.       </xs:enumeration>
  604.       <xs:enumeration value='Orchid'>
  605.         <xs:annotation>
  606.           <xs:documentation>#DA70D6</xs:documentation>
  607.         </xs:annotation>
  608.       </xs:enumeration>
  609.       <xs:enumeration value='PaleGoldenrod'>
  610.         <xs:annotation>
  611.           <xs:documentation>#EEE8AA</xs:documentation>
  612.         </xs:annotation>
  613.       </xs:enumeration>
  614.       <xs:enumeration value='PaleGreen'>
  615.         <xs:annotation>
  616.           <xs:documentation>#98FB98</xs:documentation>
  617.         </xs:annotation>
  618.       </xs:enumeration>
  619.       <xs:enumeration value='PaleTurquoise'>
  620.         <xs:annotation>
  621.           <xs:documentation>#AFEEEE</xs:documentation>
  622.         </xs:annotation>
  623.       </xs:enumeration>
  624.       <xs:enumeration value='PaleVioletRed'>
  625.         <xs:annotation>
  626.           <xs:documentation>#DB7093</xs:documentation>
  627.         </xs:annotation>
  628.       </xs:enumeration>
  629.       <xs:enumeration value='PapayaWhip'>
  630.         <xs:annotation>
  631.           <xs:documentation>#FFEFD5</xs:documentation>
  632.         </xs:annotation>
  633.       </xs:enumeration>
  634.       <xs:enumeration value='PeachPuff'>
  635.         <xs:annotation>
  636.           <xs:documentation>#FFDAB9</xs:documentation>
  637.         </xs:annotation>
  638.       </xs:enumeration>
  639.       <xs:enumeration value='Peru'>
  640.         <xs:annotation>
  641.           <xs:documentation>#CD853F</xs:documentation>
  642.         </xs:annotation>
  643.       </xs:enumeration>
  644.       <xs:enumeration value='Pink'>
  645.         <xs:annotation>
  646.           <xs:documentation>#FFC0CB</xs:documentation>
  647.         </xs:annotation>
  648.       </xs:enumeration>
  649.       <xs:enumeration value='Plum'>
  650.         <xs:annotation>
  651.           <xs:documentation>#DDA0DD</xs:documentation>
  652.         </xs:annotation>
  653.       </xs:enumeration>
  654.       <xs:enumeration value='PowderBlue'>
  655.         <xs:annotation>
  656.           <xs:documentation>#B0E0E6</xs:documentation>
  657.         </xs:annotation>
  658.       </xs:enumeration>
  659.       <xs:enumeration value='Purple'>
  660.         <xs:annotation>
  661.           <xs:documentation>#800080</xs:documentation>
  662.         </xs:annotation>
  663.       </xs:enumeration>
  664.       <xs:enumeration value='Red'>
  665.         <xs:annotation>
  666.           <xs:documentation>#FF0000</xs:documentation>
  667.         </xs:annotation>
  668.       </xs:enumeration>
  669.       <xs:enumeration value='RosyBrown'>
  670.         <xs:annotation>
  671.           <xs:documentation>#BC8F8F</xs:documentation>
  672.         </xs:annotation>
  673.       </xs:enumeration>
  674.       <xs:enumeration value='RoyalBlue'>
  675.         <xs:annotation>
  676.           <xs:documentation>#4169E1</xs:documentation>
  677.         </xs:annotation>
  678.       </xs:enumeration>
  679.       <xs:enumeration value='SaddleBrown'>
  680.         <xs:annotation>
  681.           <xs:documentation>#8B4513</xs:documentation>
  682.         </xs:annotation>
  683.       </xs:enumeration>
  684.       <xs:enumeration value='Salmon'>
  685.         <xs:annotation>
  686.           <xs:documentation>#FA8072</xs:documentation>
  687.         </xs:annotation>
  688.       </xs:enumeration>
  689.       <xs:enumeration value='SandyBrown'>
  690.         <xs:annotation>
  691.           <xs:documentation>#F4A460</xs:documentation>
  692.         </xs:annotation>
  693.       </xs:enumeration>
  694.       <xs:enumeration value='SeaGreen'>
  695.         <xs:annotation>
  696.           <xs:documentation>#2E8B57</xs:documentation>
  697.         </xs:annotation>
  698.       </xs:enumeration>
  699.       <xs:enumeration value='SeaShell'>
  700.         <xs:annotation>
  701.           <xs:documentation>#FFF5EE</xs:documentation>
  702.         </xs:annotation>
  703.       </xs:enumeration>
  704.       <xs:enumeration value='Sienna'>
  705.         <xs:annotation>
  706.           <xs:documentation>#A0522D</xs:documentation>
  707.         </xs:annotation>
  708.       </xs:enumeration>
  709.       <xs:enumeration value='Silver'>
  710.         <xs:annotation>
  711.           <xs:documentation>#C0C0C0</xs:documentation>
  712.         </xs:annotation>
  713.       </xs:enumeration>
  714.       <xs:enumeration value='SkyBlue'>
  715.         <xs:annotation>
  716.           <xs:documentation>#87CEEB</xs:documentation>
  717.         </xs:annotation>
  718.       </xs:enumeration>
  719.       <xs:enumeration value='SlateBlue'>
  720.         <xs:annotation>
  721.           <xs:documentation>#6A5ACD</xs:documentation>
  722.         </xs:annotation>
  723.       </xs:enumeration>
  724.       <xs:enumeration value='SlateGray'>
  725.         <xs:annotation>
  726.           <xs:documentation>#708090</xs:documentation>
  727.         </xs:annotation>
  728.       </xs:enumeration>
  729.       <xs:enumeration value='Snow'>
  730.         <xs:annotation>
  731.           <xs:documentation>#FFFAFA</xs:documentation>
  732.         </xs:annotation>
  733.       </xs:enumeration>
  734.       <xs:enumeration value='SpringGreen'>
  735.         <xs:annotation>
  736.           <xs:documentation>#00FF7F</xs:documentation>
  737.         </xs:annotation>
  738.       </xs:enumeration>
  739.       <xs:enumeration value='SteelBlue'>
  740.         <xs:annotation>
  741.           <xs:documentation>#4682B4</xs:documentation>
  742.         </xs:annotation>
  743.       </xs:enumeration>
  744.       <xs:enumeration value='Tan'>
  745.         <xs:annotation>
  746.           <xs:documentation>#D2B48C</xs:documentation>
  747.         </xs:annotation>
  748.       </xs:enumeration>
  749.       <xs:enumeration value='Teal'>
  750.         <xs:annotation>
  751.           <xs:documentation>#008080</xs:documentation>
  752.         </xs:annotation>
  753.       </xs:enumeration>
  754.       <xs:enumeration value='Thistle'>
  755.         <xs:annotation>
  756.           <xs:documentation>#D8BFD8</xs:documentation>
  757.         </xs:annotation>
  758.       </xs:enumeration>
  759.       <xs:enumeration value='Tomato'>
  760.         <xs:annotation>
  761.           <xs:documentation>#FF6347</xs:documentation>
  762.         </xs:annotation>
  763.       </xs:enumeration>
  764.       <xs:enumeration value='Turquoise'>
  765.         <xs:annotation>
  766.           <xs:documentation>#40E0D0</xs:documentation>
  767.         </xs:annotation>
  768.       </xs:enumeration>
  769.       <xs:enumeration value='Violet'>
  770.         <xs:annotation>
  771.           <xs:documentation>#EE82EE</xs:documentation>
  772.         </xs:annotation>
  773.       </xs:enumeration>
  774.       <xs:enumeration value='Wheat'>
  775.         <xs:annotation>
  776.           <xs:documentation>#F5DEB3</xs:documentation>
  777.         </xs:annotation>
  778.       </xs:enumeration>
  779.       <xs:enumeration value='White'>
  780.         <xs:annotation>
  781.           <xs:documentation>#FFFFFF</xs:documentation>
  782.         </xs:annotation>
  783.       </xs:enumeration>
  784.       <xs:enumeration value='WhiteSmoke'>
  785.         <xs:annotation>
  786.           <xs:documentation>#F5F5F5</xs:documentation>
  787.         </xs:annotation>
  788.       </xs:enumeration>
  789.       <xs:enumeration value='Yellow'>
  790.         <xs:annotation>
  791.           <xs:documentation>#FFFF00</xs:documentation>
  792.         </xs:annotation>
  793.       </xs:enumeration>
  794.       <xs:enumeration value='YellowGreen'>
  795.         <xs:annotation>
  796.           <xs:documentation>#9ACD32</xs:documentation>
  797.         </xs:annotation>
  798.       </xs:enumeration>
  799.     </xs:restriction>
  800.   </xs:simpleType>
  801.   <xs:simpleType name="font" vs:builder="Microsoft.FontBuilder"
  802.                  vs:assembly="FontBuilder, Version=1.0.0.0, Culture=neutral, PublicKeyToken=007b972e7cff2ded, processorArchitecture=MSIL">
  803.     <xs:union memberTypes="xs:string">
  804.       <xs:simpleType>
  805.         <xs:restriction base="xs:string">
  806.           <xs:enumeration value="Arial" />
  807.           <xs:enumeration value="Comic Sans MS"/>
  808.           <xs:enumeration value="Courier" />
  809.           <xs:enumeration value="Garamond" />
  810.           <xs:enumeration value="Lucida Sans" />
  811.           <xs:enumeration value="System" />
  812.           <xs:enumeration value="Times New Roman" />
  813.           <xs:enumeration value="Verdana" />
  814.         </xs:restriction>
  815.       </xs:simpleType>
  816.     </xs:union>
  817.   </xs:simpleType>
  818. </xs:schema>