| 1234567891011121314151617181920212223242526272829303132333435 |
- <?xml version="1.0" encoding="UTF-8"?>
- <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- targetNamespace="https://biuro.biall-net.pl/wfs">
- <xsd:simpleType name="string">
- <xsd:restriction base="xsd:string">
- <xsd:maxLength value="255"/>
- </xsd:restriction>
- </xsd:simpleType>
- <xsd:simpleType name="longString">
- <xsd:restriction base="xsd:string">
- <xsd:maxLength value="1000"/>
- </xsd:restriction>
- </xsd:simpleType>
- <xsd:simpleType name="p5:enum">
- <xsd:restriction base="xsd:string" />
- </xsd:simpleType>
- <xsd:simpleType name="p5:www_link">
- <xsd:restriction base="xsd:string" />
- </xsd:simpleType>
- <xsd:simpleType name="p5:alias">
- <xsd:restriction base="xsd:string" />
- </xsd:simpleType>
- <xsd:simpleType name="price">
- <xsd:restriction base="xsd:decimal">
- <xsd:totalDigits value="12"/>
- <xsd:fractionDigits value="2"/>
- </xsd:restriction>
- </xsd:simpleType>
- </xsd:schema>
|