types.xsd 1.1 KB

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