-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssetTypeCrowdResponse.xsd
More file actions
21 lines (19 loc) · 1016 Bytes
/
AssetTypeCrowdResponse.xsd
File metadata and controls
21 lines (19 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="uri:ea.com:eala:asset" xmlns:at="uri:ea.com:eala:asset:type" xmlns:xas="uri:ea.com:eala:asset:schema" targetNamespace="uri:ea.com:eala:asset" elementFormDefault="qualified" xmlns:XmlEdit="http://tempuri.org/XmlEdit.xsd">
<xs:complexType name="Threshold">
<xs:sequence>
<xs:element name="AudioArrayVoice" type="AudioArrayVoice" minOccurs="1" maxOccurs="1"/>
</xs:sequence>
<xs:attribute name="NumUnits" type="SageInt" default="0" />
</xs:complexType>
<xs:complexType name="CrowdResponse" xas:runtimeWrapper="::CrowdResponseTemplate" xas:typeGroup="Xml">
<xs:complexContent>
<xs:extension base="BaseInheritableAsset">
<xs:sequence>
<xs:element name="Threshold" type="Threshold" minOccurs="1" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="Weight" type="SageInt" default="100" />
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:schema>