Files
116.02_KR_DataCenter_Unpacked/SlashCommand/SlashCommand.xsd
2024-07-18 22:48:21 -05:00

35 lines
1.7 KiB
XML

<!-- SPDX-License-Identifier: 0BSD -->
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dc="https://vezel.dev/novadrop/dc"
xmlns="https://vezel.dev/novadrop/dc/SlashCommand"
targetNamespace="https://vezel.dev/novadrop/dc/SlashCommand"
xsi:schemaLocation="https://vezel.dev/novadrop/dc ../DataCenter.xsd"
elementFormDefault="qualified">
<xsd:complexType name="SlashCommand">
<xsd:sequence>
<xsd:element name="Command" type="SlashCommand_Command" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="SlashCommand_Command"
dc:keys="id">
<xsd:attribute name="adminOnly" type="xsd:boolean" />
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="autofillupparam" type="xsd:boolean" />
<xsd:attribute name="canUseWhenPolymorph" type="xsd:boolean" />
<xsd:attribute name="command" type="xsd:string" use="required" />
<xsd:attribute name="excludedGameModeList" type="xsd:string" />
<xsd:attribute name="id" type="xsd:int" use="required" />
<xsd:attribute name="name" type="xsd:string" />
<xsd:attribute name="paramCount" type="xsd:int" use="required" />
<xsd:attribute name="socialMotionId" type="xsd:int" />
<xsd:attribute name="useChatInteractionMenu" type="xsd:boolean" />
<xsd:attribute name="useInteractionMenu" type="xsd:boolean" />
<xsd:attribute name="usePartyInteractionMenu" type="xsd:boolean" />
</xsd:complexType>
<xsd:element name="SlashCommand" type="SlashCommand" />
</xsd:schema>