Story: #104525314 - add verified to delete command type in XML schema

This commit is contained in:
Matt Farnsworth 2015-10-30 14:17:08 +02:00
parent 12f3c3fe2f
commit 8171578532

View file

@ -29,7 +29,7 @@
--> -->
<element name="check" type="domain:mNameType"/> <element name="check" type="domain:mNameType"/>
<element name="create" type="domain:createType"/> <element name="create" type="domain:createType"/>
<element name="delete" type="domain:sNameType"/> <element name="delete" type="domain:verifiedDeleteType"/>
<element name="info" type="domain:infoType"/> <element name="info" type="domain:infoType"/>
<element name="renew" type="domain:renewType"/> <element name="renew" type="domain:renewType"/>
<element name="transfer" type="domain:transferType"/> <element name="transfer" type="domain:transferType"/>
@ -133,6 +133,22 @@
</sequence> </sequence>
</complexType> </complexType>
<!-- <!--
Extended delete with verified attribute and include single name content
-->
<complexType name="verifiedDeleteType">
<sequence>
<element name="name" type="eppcom:labelType"/>
</sequence>
<attribute name="verified" use="optional">
<simpleType>
<restriction base="string">
<enumeration value="yes"/>
<enumeration value="no"/>
</restriction>
</simpleType>
</attribute>
</complexType>
<!--
Child element of commands that accept multiple names. Child element of commands that accept multiple names.
--> -->
<complexType name="mNameType"> <complexType name="mNameType">