-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathlists.xsd
More file actions
46 lines (41 loc) · 2.68 KB
/
lists.xsd
File metadata and controls
46 lines (41 loc) · 2.68 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="http://labkey.org/list/xml"
targetNamespace="http://labkey.org/list/xml"
elementFormDefault="qualified">
<xsd:annotation>
<xsd:documentation xml:lang="en">Describes the list settings, list-specific properties beyond those included in tableInfo.xsd.
Used to generate and read settings.xml in list archives.
</xsd:documentation>
</xsd:annotation>
<xsd:element name="lists">
<xsd:complexType>
<xsd:sequence maxOccurs="unbounded">
<xsd:element name="list">
<xsd:complexType>
<xsd:attribute name="name" type="xsd:string" use="required"/>
<xsd:attribute name="id" type="xsd:int"/>
<xsd:attribute name="discussions" type="xsd:int" default="0"/>
<xsd:attribute name="allowDelete" type="xsd:boolean" default="true"/>
<xsd:attribute name="allowUpload" type="xsd:boolean" default="true"/>
<xsd:attribute name="allowExport" type="xsd:boolean" default="true"/>
<xsd:attribute name="eachItemIndex" type="xsd:boolean" default="false"/>
<xsd:attribute name="eachItemTitleSetting" type="xsd:int" default="0"/>
<xsd:attribute name="eachItemTitleTemplate" type="xsd:string"/>
<xsd:attribute name="eachItemBodySetting" type="xsd:int" default="0"/>
<xsd:attribute name="eachItemBodyTemplate" type="xsd:string"/>
<xsd:attribute name="entireListIndex" type="xsd:boolean" default="false"/>
<xsd:attribute name="entireListIndexSetting" type="xsd:int" default="0"/>
<xsd:attribute name="entireListTitleSetting" type="xsd:int" default="0"/>
<xsd:attribute name="entireListTitleTemplate" type="xsd:string"/>
<xsd:attribute name="entireListBodySetting" type="xsd:int" default="0"/>
<xsd:attribute name="entireListBodyTemplate" type="xsd:string"/>
<xsd:attribute name="fileAttachmentIndex" type="xsd:boolean" default="false"/>
<xsd:attribute name="category" type="xsd:string"/>
<xsd:attribute name="multiFolder" type="xsd:boolean" default="false"/>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>