-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssetTypeCommandSet.xsd
More file actions
23 lines (21 loc) · 1.12 KB
/
AssetTypeCommandSet.xsd
File metadata and controls
23 lines (21 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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="CommandButton">
<xs:sequence>
<xs:element name="InitialDelay" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" />
</xs:sequence>
<xs:attribute name="Name" type="xs:string" />
<xs:attribute name="Index" type="SageUnsignedInt" />
</xs:complexType>
<xs:complexType name="CommandSet" xas:runtimeWrapper="::CommandSet" xas:typeGroup="Xml">
<xs:complexContent>
<xs:extension base="BaseAssetType">
<xs:sequence>
<xs:element name="CommandButton" type="CommandButton" minOccurs="0" maxOccurs="32" />
</xs:sequence>
<xs:attribute name="Name" type="xs:string" />
<xs:attribute name="InitialVisible" type="SageInt" default="32" />
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:schema>