forked from medzuslovjansky/database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzonal-wordnet.xsd
43 lines (40 loc) · 1.46 KB
/
zonal-wordnet.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8" ?>
<xs:schema
xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="https://interslavic.fun/schemas/zonal-wordnet.xsd"
xmlns:zwn="https://interslavic.fun/schemas/zonal-wordnet.xsd"
>
<xs:element name="multilingual-synset" type="zwn:multilingualSynsetType" />
<xs:element name="synset" type="zwn:synsetType" />
<xs:element name="lemma" type="zwn:lemmaType" />
<xs:complexType name="multilingualSynsetType">
<xs:sequence>
<xs:any
namespace="##other"
processContents="lax"
minOccurs="0"
maxOccurs="unbounded"
/>
<xs:element ref="zwn:synset" maxOccurs="unbounded" />
</xs:sequence>
<xs:attribute name="id" type="xs:string" use="required" />
<xs:anyAttribute processContents="lax" />
</xs:complexType>
<xs:complexType name="synsetType">
<xs:sequence>
<xs:element ref="zwn:lemma" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<xs:attribute name="lang" type="xs:string" use="required" />
<xs:attribute name="verified" type="xs:boolean" />
<xs:attribute name="debated" type="xs:boolean" />
<xs:anyAttribute processContents="lax" />
</xs:complexType>
<xs:complexType name="lemmaType">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="annotation" type="xs:string" />
<xs:anyAttribute processContents="lax" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:schema>