Advertisement
Guest User

Untitled

a guest
Mar 31st, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  2. <xs:element name="struktura">
  3. <xs:complexType>
  4. <xs:sequence>
  5. <xs:element name="zaklad" maxOccurs="5" minOccurs="1">
  6. <xs:complexType>
  7. <xs:sequence>
  8. <xs:element type="xs:string" name="nazwa"/>
  9. <xs:element type="xs:string" name="skrot"/>
  10. </xs:sequence>
  11. </xs:complexType>
  12. </xs:element>
  13. <xsd:key name="kluczZakladu">
  14. <xsd:selector xpath="zaklad" />
  15. <xsd:field xpath="skrot" />
  16. </xsd:key>
  17. <xs:element name="pracownik" maxOccurs="unbounded" minOccurs="1">
  18. <xs:complexType>
  19. <xs:sequence>
  20. <xs:element name="tytul">
  21. <xs:simpleType>
  22. <xs:restriction base="xs:string">
  23. <xs:enumeration value="mgr"/>
  24. <xs:enumeration value="dr"/>
  25. <xs:enumeration value="prof"/>
  26. </xs:restriction>
  27. </xs:simpleType>
  28. </xs:element>
  29. <xs:element type="xs:string" name="nazwisko"/>
  30. <xs:element type="xs:string" name="imie"/>
  31. </xs:sequence>
  32. <xs:attribute type="xs:string" name="zaklad" use="optional"/>
  33. </xs:complexType>
  34. </xs:element>
  35. <xs:element name="student" maxOccurs="unbounded" minOccurs="1">
  36. <xs:complexType>
  37. <xs:sequence>
  38. <xs:element type="xs:string" name="nazwisko"/>
  39. <xs:element type="xs:string" name="imie"/>
  40. <xs:element name="nrkonta"/>
  41. <xs:simpleType>
  42. <xs:restriction base="xs:string">
  43. <xsd:pattern value='[0-9]{3}(-[0-9]{3})?'/>
  44. </xs:restriction>
  45. </xs:simpleType>
  46. </xs:element>
  47. </xs:sequence>
  48. <xs:attribute type="xs:string" name="kierunek"/>
  49. </xs:complexType>
  50. </xs:element>
  51. </xs:sequence>
  52. </xs:complexType>
  53. </xs:element>
  54. </xs:schema>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement