-
Notifications
You must be signed in to change notification settings - Fork 6
/
dataprovider.schema.xsd
30 lines (29 loc) · 1.8 KB
/
dataprovider.schema.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
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="xervice:dataprovider-01" elementFormDefault="qualified">
<!--
XML Schema for the Xervice data provider schemes
-->
<xsd:element name="DataProviders">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="DataProvider" minOccurs="0" maxOccurs="unbounded">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="DataElement" minOccurs="0" maxOccurs="unbounded">
<xsd:complexType>
<xsd:attribute name="name" type="xsd:string" use="required"></xsd:attribute>
<xsd:attribute name="type" type="xsd:string" use="required"></xsd:attribute>
<xsd:attribute name="default" type="xsd:string" use="optional" default=""></xsd:attribute>
<xsd:attribute name="singleton" type="xsd:string" use="optional"></xsd:attribute>
<xsd:attribute name="allownull" type="xsd:boolean" use="optional" default="false"></xsd:attribute>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required"></xsd:attribute>
<xsd:attribute name="ConvertUnderlines" type="xsd:boolean" use="optional" default="false"></xsd:attribute>
<xsd:attribute name="deprecated" type="xsd:boolean" use="optional"></xsd:attribute>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>