| 1234567891011121314151617181920212223242526272829303132 |
- <?xml version="1.0" encoding="UTF-8"?>
- <xs:schema targetNamespace="https://biuro.biall-net.pl/wfs"
- xmlns:p5wfs="https://biuro.biall-net.pl/wfs" xmlns:xs="http://www.w3.org/2001/XMLSchema">
- <xs:annotation>
- <xs:documentation>@201907 tymczasowy prefix do walidacji</xs:documentation>
- </xs:annotation>
- <xs:simpleType name="string">
- <xs:restriction base="xs:string">
- <xs:maxLength value="255"/>
- </xs:restriction>
- </xs:simpleType>
- <xs:simpleType name="longString">
- <xs:restriction base="xs:string">
- <xs:maxLength value="1000"/>
- </xs:restriction>
- </xs:simpleType>
- <xs:simpleType name="p5:enum">
- <xs:restriction base="xs:string"/>
- </xs:simpleType>
- <xs:simpleType name="p5:www_link">
- <xs:restriction base="xs:string"/>
- </xs:simpleType>
- <xs:simpleType name="p5:alias">
- <xs:restriction base="xs:string"/>
- </xs:simpleType>
- <xs:simpleType name="price">
- <xs:restriction base="xs:decimal">
- <xs:totalDigits value="12"/>
- <xs:fractionDigits value="2"/>
- </xs:restriction>
- </xs:simpleType>
- </xs:schema>
|