This repository has been archived on 2020-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
ibz/web/2_sem/xml/aufgabe6b.xsd

15 lines
651 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:complexType name="employeeType">
<xsd:sequence>
<xsd:element name="empNumber" type="xsd:string"/>
<xsd:element name="firstName" type="xsd:string" />
<xsd:element name="lastName" type="xsd:string" />
<xsd:element name="dateOfBirth" type="xsd:date" />
<xsd:element name="department" type="xsd:string" />
<xsd:element name="salary" type="xsd:long" />
</xsd:sequence>
</xsd:complexType>
<xsd:element name="employee" type="employeeType" />
</xsd:schema>