AssetTypeEngagingContent.xsd 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  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="EngagingContent" xas:typeGroup="Xml">
  4. <xs:complexContent>
  5. <xs:extension base="BaseAssetType">
  6. <xs:attribute name="TitleId" type="xs:string" use="required" />
  7. <xs:attribute name="DescId" type="xs:string" use="required" />
  8. <xs:attribute name="ImageId" type="xs:string" use="required" />
  9. </xs:extension>
  10. </xs:complexContent>
  11. </xs:complexType>
  12. <xs:complexType name="EngagingContentGroup" xas:typeGroup="Xml">
  13. <xs:complexContent>
  14. <xs:extension base="BaseAssetType">
  15. <xs:sequence>
  16. <xs:element name="EngagingContent" type="EngagingContentRef" minOccurs="1" maxOccurs="unbounded" />
  17. </xs:sequence>
  18. </xs:extension>
  19. </xs:complexContent>
  20. </xs:complexType>
  21. <xs:complexType name="EngagingContentSequence" xas:runtimeWrapper="::EngagingContent::Sequence" xas:typeGroup="Xml">
  22. <xs:complexContent>
  23. <xs:extension base="BaseAssetType">
  24. <xs:attribute name="MapName" type="xs:string" use="required" />
  25. <xs:attribute name="RequiredContent" type="EngagingContentGroupRef" />
  26. <xs:attribute name="RandomContent" type="EngagingContentGroupRef" />
  27. </xs:extension>
  28. </xs:complexContent>
  29. </xs:complexType>
  30. </xs:schema>