decimal-1.xsd 721 B

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0"?>
  2. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  3. <xsd:simpleType name="myDecimal">
  4. <xsd:restriction base="xsd:decimal">
  5. <xsd:totalDigits value="18"/>
  6. </xsd:restriction>
  7. </xsd:simpleType>
  8. <xsd:element name="foo">
  9. <xsd:complexType>
  10. <xsd:sequence>
  11. <xsd:element name="val" type="myDecimal" maxOccurs="unbounded"/>
  12. <xsd:element name="ref" type="myDecimal" minOccurs="0"/>
  13. </xsd:sequence>
  14. </xsd:complexType>
  15. <!--xsd:key name="myKey">
  16. <xsd:selector xpath="val"/>
  17. <xsd:field xpath="."/>
  18. </xsd:key>
  19. <xsd:keyref name="myKeyRef" refer="myKey">
  20. <xsd:selector xpath="ref"/>
  21. <xsd:field xpath="."/>
  22. </xsd:keyref-->
  23. </xsd:element>
  24. </xsd:schema>