types.xsd 993 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  3. targetNamespace="https://biuro.biall-net.pl/wfs">
  4. <xsd:simpleType name="string">
  5. <xsd:restriction base="xsd:string">
  6. <xsd:maxLength value="255"/>
  7. </xsd:restriction>
  8. </xsd:simpleType>
  9. <xsd:simpleType name="longString">
  10. <xsd:restriction base="xsd:string">
  11. <xsd:maxLength value="1000"/>
  12. </xsd:restriction>
  13. </xsd:simpleType>
  14. <xsd:simpleType name="p5:enum">
  15. <xsd:restriction base="xsd:string" />
  16. </xsd:simpleType>
  17. <xsd:simpleType name="p5:www_link">
  18. <xsd:restriction base="xsd:string" />
  19. </xsd:simpleType>
  20. <xsd:simpleType name="p5:alias">
  21. <xsd:restriction base="xsd:string" />
  22. </xsd:simpleType>
  23. <xsd:simpleType name="price">
  24. <xsd:restriction base="xsd:decimal">
  25. <xsd:totalDigits value="12"/>
  26. <xsd:fractionDigits value="2"/>
  27. </xsd:restriction>
  28. </xsd:simpleType>
  29. </xsd:schema>