Allow specifying 'verified' attribute #2660

This commit is contained in:
Martin Lensment 2015-05-29 17:08:58 +03:00
parent bd53db2040
commit ed44238ec5
3 changed files with 22 additions and 7 deletions

View file

@ -241,12 +241,28 @@
Allow the registrant value to be nullified by changing the
minLength restriction to "0".
-->
<simpleType name="clIDChgType">
<complexType name="clIDChgType">
<simpleContent>
<extension base="domain:clIDChgSimpleType">
<attribute name="verified" type="domain:verifiedType"/>
</extension>
</simpleContent>
</complexType>
<simpleType name="clIDChgSimpleType">
<restriction base="token">
<minLength value="0"/>
<maxLength value="16"/>
</restriction>
</simpleType>
</simpleType>
<simpleType name="verifiedType">
<restriction base="token">
<enumeration value="yes"/>
<enumeration value="no"/>
</restriction>
</simpleType>
<!--
Allow the authInfo value to be nullified by including an

View file

@ -53,7 +53,6 @@ Abstract client and object identifier type.
<simpleType name="clIDType">
<restriction base="token">
<minLength value="3"/>
<maxLength value="20"/>
</restriction>
</simpleType>