-
Notifications
You must be signed in to change notification settings - Fork 33
/
libraries.xsd
52 lines (52 loc) · 2.49 KB
/
libraries.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
44
45
46
47
48
49
50
51
52
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="Location">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute type="xs:byte" name="id" use="optional"/>
<xs:attribute type="xs:string" name="path" use="optional"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="Directory">
<xs:complexType>
<xs:sequence>
<xs:element ref="Location"/>
</xs:sequence>
<xs:attribute type="xs:byte" name="allowSync" use="optional"/>
<xs:attribute type="xs:string" name="art" use="optional"/>
<xs:attribute type="xs:string" name="composite" use="optional"/>
<xs:attribute type="xs:byte" name="filters" use="optional"/>
<xs:attribute type="xs:byte" name="refreshing" use="optional"/>
<xs:attribute type="xs:string" name="thumb" use="optional"/>
<xs:attribute type="xs:byte" name="key" use="optional"/>
<xs:attribute type="xs:string" name="type" use="optional"/>
<xs:attribute type="xs:string" name="title" use="optional"/>
<xs:attribute type="xs:string" name="agent" use="optional"/>
<xs:attribute type="xs:string" name="scanner" use="optional"/>
<xs:attribute type="xs:string" name="language" use="optional"/>
<xs:attribute type="xs:string" name="uuid" use="optional"/>
<xs:attribute type="xs:int" name="updatedAt" use="optional"/>
<xs:attribute type="xs:int" name="createdAt" use="optional"/>
<xs:attribute type="xs:int" name="scannedAt" use="optional"/>
<xs:attribute type="xs:byte" name="content" use="optional"/>
<xs:attribute type="xs:byte" name="directory" use="optional"/>
<xs:attribute type="xs:short" name="contentChangedAt" use="optional"/>
<xs:attribute type="xs:byte" name="hidden" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element name="MediaContainer">
<xs:complexType>
<xs:sequence>
<xs:element ref="Directory" maxOccurs="unbounded" minOccurs="0"/>
</xs:sequence>
<xs:attribute type="xs:byte" name="size"/>
<xs:attribute type="xs:byte" name="allowSync"/>
<xs:attribute type="xs:string" name="identifier"/>
<xs:attribute type="xs:string" name="mediaTagPrefix"/>
<xs:attribute type="xs:int" name="mediaTagVersion"/>
<xs:attribute type="xs:string" name="title1"/>
</xs:complexType>
</xs:element>
</xs:schema>