This commit is contained in:
perski6 2021-04-22 14:54:35 +02:00
commit 6e4016800b
2 changed files with 142 additions and 0 deletions

68
instance.xml Normal file
View File

@ -0,0 +1,68 @@
<?xml version="1.0" encoding="UTF-8"?>
<WYDZIAL Id="ID-100">
<Nazwa>Wydział informatyki</Nazwa>
<Adres>
<Ulica>jagodowa</Ulica>
<Numer>13</Numer>
<kod_pocztowy>11-111</kod_pocztowy>
<Miejscowosc>Poznan</Miejscowosc>
</Adres>
<Pracownik Pracownik_Id="ID-1">
<Tytul>Doktor</Tytul>
<Imie>Pawel</Imie>
<Nazwisko>Marcin</Nazwisko>
<Kategoria>Naukowy</Kategoria>
<Adres>
<Ulica>Malinowskiego</Ulica>
<Numer>4</Numer>
<kod_pocztowy>87-100</kod_pocztowy>
<Miejscowosc>Torun</Miejscowosc>
</Adres>
</Pracownik>
<Pracownik Pracownik_Id="ID-2">
<Imie>Jan</Imie>
<Nazwisko>Dzban</Nazwisko>
<Adres>
<Ulica>Zwycieska</Ulica>
<Numer>13</Numer>
<kod_pocztowy>12-121</kod_pocztowy>
<Miejscowosc>Gdansk</Miejscowosc>
</Adres>
<Adres>
<Ulica>Jablonowa</Ulica>
<Numer>13</Numer>
<kod_pocztowy>74-421</kod_pocztowy>
<Miejscowosc>Poznan</Miejscowosc>
</Adres>
</Pracownik>
<Pracownik Pracownik_Id="ID-3">
<Tytul>Inżynier</Tytul>
<Imie>Karol</Imie>
<Nazwisko>Grzankowski</Nazwisko>
<Kategoria>Naukowy</Kategoria>
<Adres>
<Ulica>Szeroka</Ulica>
<Numer>13</Numer>
<kod_pocztowy>41-444</kod_pocztowy>
<Miejscowosc>Jablonowo</Miejscowosc>
</Adres>
</Pracownik>
<Przedmiot pracownik_ref="ID-1">
<kod>PP-01</kod>
<nazwa>Podstawy kombinatoryki</nazwa>
<opis>zakres: podstawy kombinatoryki</opis>
<liczba_uczestnikow>31</liczba_uczestnikow>
</Przedmiot>
<Przedmiot pracownik_ref="ID-3">
<kod>PO-02</kod>
<nazwa>Programowanie obiektowe</nazwa>
<opis>Zakres: Programowanie obiektowe </opis>
<liczba_uczestnikow>11</liczba_uczestnikow>
</Przedmiot>
<Przedmiot pracownik_ref="ID-2">
<kod>GK-03</kod>
<nazwa>Grafika komputerowa</nazwa>
<opis>Zakres: grafika komputerowa </opis>
<liczba_uczestnikow>11</liczba_uczestnikow>
</Przedmiot>
</WYDZIAL>

74
schema.xsd Normal file
View File

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xsd:annotation>
<xsd:documentation xml:lang="pl">Definicja wydziału informatyki</xsd:documentation>
</xsd:annotation>
<xsd:element name="WYDZIAL">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Nazwa" type="xsd:string" minOccurs="1" maxOccurs="1"></xsd:element>
<xsd:element ref="Adres" minOccurs="0" maxOccurs="unbounded"></xsd:element>
<xsd:element ref="Pracownik" minOccurs="1" maxOccurs="unbounded"></xsd:element>
<xsd:element ref="Przedmiot" minOccurs="0" maxOccurs="unbounded"></xsd:element>
</xsd:sequence>
<xsd:attribute name="Id" use="required" type="xsd:ID"></xsd:attribute>
</xsd:complexType>
</xsd:element>
<xsd:element name="Adres">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Ulica" minOccurs="1" maxOccurs="1" type="xsd:string"></xsd:element>
<xsd:element name="Numer" minOccurs="1" maxOccurs="1" type="xsd:string"></xsd:element>
<xsd:element name="kod_pocztowy">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="6"/>
<xsd:maxLength value="6"/>
<xsd:pattern value="\d{2}-\d{3}"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Miejscowosc" type="xsd:string"></xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="Pracownik">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Tytul" type="xsd:string" minOccurs="0" maxOccurs="1"></xsd:element>
<xsd:element name="Imie" type="xsd:string" minOccurs="1" maxOccurs="1"></xsd:element>
<xsd:element name="Nazwisko" type="xsd:string" minOccurs="1" maxOccurs="1"></xsd:element>
<xsd:element name="Kategoria" minOccurs="0" maxOccurs="1">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Naukowy"/>
<xsd:enumeration value="Administracyjny"/>
<xsd:enumeration value="Techniczny"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element ref="Adres" minOccurs="1" maxOccurs="unbounded"></xsd:element>
</xsd:sequence>
<xsd:attribute name="Pracownik_Id" use="required" type="xsd:ID"></xsd:attribute>
</xsd:complexType>
</xsd:element>
<xsd:element name="Przedmiot">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="kod" type="xsd:string" minOccurs="1" maxOccurs="1"></xsd:element>
<xsd:element name="nazwa" type="xsd:string" minOccurs="1" maxOccurs="1"></xsd:element>
<xsd:element name="opis" type="xsd:string" minOccurs="1" maxOccurs="1"></xsd:element>
<xsd:element name="liczba_uczestnikow" minOccurs="1" maxOccurs="1">
<xsd:simpleType>
<xsd:restriction base="xsd:integer">
<xsd:minInclusive value="6"/>
<xsd:maxInclusive value="400"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="pracownik_ref" type="xsd:IDREF" use="required"/>
</xsd:complexType>
</xsd:element>
</xsd:schema>