Merge branch 'master' of github.com:domify/registry

This commit is contained in:
Priit Tark 2015-07-10 17:03:53 +03:00
commit 2f352d8e6f
28 changed files with 432 additions and 74 deletions

View file

@ -15,22 +15,40 @@
Child elements found in EPP commands.
-->
<element name="extdata" type="eis:legalDocAndIdentType"/>
<element name="extdata" type="eis:eisExtType"/>
<!--
Child elements supporting ident and legal documents.
Child elements supporting EIS specific values.
-->
<complexType name="legalDocAndIdentType">
<complexType name="eisExtType">
<sequence>
<element name="ident" type="eis:identType" minOccurs="0" maxOccurs="1"/>
<element name="legalDocument" type="eis:legalDocType" minOccurs="0" maxOccurs="1"/>
<element name="reserved" type="eis:reservedType" minOccurs="0" maxOccurs="1"/>
</sequence>
</complexType>
<!--
Child elements of extdata
Child elements of extdata
-->
<!--
Reserved for providing passwords for reserved domains
-->
<complexType name="reservedType">
<sequence>
<element name="pw" type="eis:pwType" minOccurs="0" maxOccurs="1"/>
</sequence>
</complexType>
<simpleType name="pwType">
<restriction base="normalizedString">
<minLength value="1"/>
<maxLength value="255"/>
</restriction>
</simpleType>
<!--
Legal document, encoded in base64
-->