Zadanie domowe z 6. lekcji
This commit is contained in:
parent
0c1e2f6460
commit
c3547ea177
76
dom6/zadanie domowe.xml
Normal file
76
dom6/zadanie domowe.xml
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||||
|
|
||||||
|
<xs:element name="system">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
|
||||||
|
<xs:element name="wizytowka" maxOccurs="unbounded">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="nazwa_firmy">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="30"/>
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
|
||||||
|
<xs:element name="imie">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="20"/>
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
|
||||||
|
<xs:element name="nazwisko">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:maxLength value="20"/>
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
|
||||||
|
<xs:element name="telefon">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:integer">
|
||||||
|
<xs:pattern value="[0-9]{9}"/>
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
|
||||||
|
<xs:element name="email" type="xs:string" maxOccurs="1"/>
|
||||||
|
<xs:element name="adres_pocztowy" type="xs:string" maxOccurs="1"/>
|
||||||
|
|
||||||
|
<xs:element name="kod_pocztowy">
|
||||||
|
<xs:simpleType>
|
||||||
|
<xs:restriction base="xs:string">
|
||||||
|
<xs:pattern value="[0-9]{2}-[0-9]{3}"/>
|
||||||
|
</xs:restriction>
|
||||||
|
</xs:simpleType>
|
||||||
|
</xs:element>
|
||||||
|
</xs:sequence>
|
||||||
|
|
||||||
|
<xs:attribute name="id" type="xs:string" use="required"/>
|
||||||
|
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
|
||||||
|
</xs:schema>
|
||||||
|
|
||||||
|
<system>
|
||||||
|
<wizytowka id="0">
|
||||||
|
<nazwa_firmy>Firmowanka</nazwa_firmy>
|
||||||
|
<imie>Artur</imie>
|
||||||
|
<nazwisko>Wilczór</nazwisko>
|
||||||
|
<telefon>672763723</telefon>
|
||||||
|
<email>aw@ktos.pl</email>
|
||||||
|
<adres_pocztowy>Os. Jakiestam 5/1</adres_pocztowy>
|
||||||
|
<kod_pocztowy>12-432</kod_pocztowy>
|
||||||
|
</wizytowka>
|
||||||
|
</system>
|
Loading…
Reference in New Issue
Block a user