AssetTypeCommandSet.xsd 1.1 KB

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <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">
  3. <xs:complexType name="CommandButton">
  4. <xs:sequence>
  5. <xs:element name="InitialDelay" type="ClientRandomVariable" minOccurs="0" maxOccurs="1" />
  6. </xs:sequence>
  7. <xs:attribute name="Name" type="xs:string" />
  8. <xs:attribute name="Index" type="SageUnsignedInt" />
  9. </xs:complexType>
  10. <xs:complexType name="CommandSet" xas:runtimeWrapper="::CommandSet" xas:typeGroup="Xml">
  11. <xs:complexContent>
  12. <xs:extension base="BaseAssetType">
  13. <xs:sequence>
  14. <xs:element name="CommandButton" type="CommandButton" minOccurs="0" maxOccurs="32" />
  15. </xs:sequence>
  16. <xs:attribute name="Name" type="xs:string" />
  17. <xs:attribute name="InitialVisible" type="SageInt" default="32" />
  18. </xs:extension>
  19. </xs:complexContent>
  20. </xs:complexType>
  21. </xs:schema>