-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssetTypeStringHashTable.xsd
More file actions
21 lines (19 loc) · 1 KB
/
AssetTypeStringHashTable.xsd
File metadata and controls
21 lines (19 loc) · 1 KB
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="StringHashTable" xas:runtimeWrapper="ResourceManager::DataToStringTable" xas:typeGroup="Xml">
<xs:complexContent>
<xs:extension base="BaseAssetType">
<xs:sequence>
<xs:element name="StringAndHash" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:attribute name="Hash" type="SageUnsignedInt" />
<xs:attribute name="Text" type="xs:string" />
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="StringHashBin" type="StringHashBin" use="required"/>
<xs:attribute name="Version" type="SageInt" use="required" xas:pipelineOnly="true"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:schema>