1 <?xml version="1.0" encoding="UTF-8"?>
4 Copyright © 2012 František Kučera (frantovo.cz)
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
19 <xs:schema xmlns="https://telco.frantovo.cz/xmlns/dictionary"
20 targetNamespace="https://telco.frantovo.cz/xmlns/dictionary"
21 xmlns:xs="http://www.w3.org/2001/XMLSchema"
22 elementFormDefault="qualified"
23 attributeFormDefault="unqualified">
25 <xs:element name="dictionary" type="dictionaryType"/>
27 <xs:complexType name="dictionaryType">
28 <xs:sequence minOccurs="0" maxOccurs="unbounded">
29 <xs:element name="concept" type="conceptType"/>
33 <xs:complexType name="conceptType">
35 <xs:element name="term" type="termType" minOccurs="1" maxOccurs="unbounded"/>
36 <xs:element name="explanation" type="explanationType"/>
40 <xs:complexType name="termType">
41 <xs:attribute name="abbreviation" type="xs:string"/>
42 <xs:attribute name="completeForm" type="xs:string"/>
43 <xs:attribute name="language" type="languageType"/>
46 <xs:complexType name="explanationType">
48 <xs:element name="text" type="textType"/>
50 <xs:attribute name="language" type="languageType"/>
53 <xs:simpleType name="languageType">
54 <xs:restriction base="xs:string"/>
57 <xs:simpleType name="textType">
58 <xs:restriction base="xs:string"/>