Remove regtype extension since we won't be using it

If we do end up needing it we can simply revert this commit.
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=127094676
This commit is contained in:
mcilwain 2016-07-11 09:30:31 -07:00 committed by Ben McIlwain
parent cd23ece924
commit 0e511f0178
23 changed files with 5 additions and 414 deletions

View file

@ -1,68 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:regtype="urn:ietf:params:xml:ns:regtype-0.2"
xmlns:eppcom="urn:ietf:params:xml:ns:eppcom-1.0"
targetNamespace="urn:ietf:params:xml:ns:regtype-0.2"
elementFormDefault="qualified">
<import namespace="urn:ietf:params:xml:ns:eppcom-1.0" />
<annotation>
<documentation>Extensible Provisioning Protocol
v1.0 domain name extension schema for
registration type.</documentation>
</annotation>
<!--
Child elements found in EPP commands and responses
-->
<element name="check" type="regtype:checkType" />
<element name="infData" type="regtype:infDataType" />
<element name="create" type="regtype:createType" />
<element name="update" type="regtype:updateType" />
<!--
<check> command
-->
<complexType name="checkType">
<sequence>
<element name="type" type="eppcom:minTokenType" />
</sequence>
</complexType>
<!--
server <info> result
-->
<complexType name="infDataType">
<sequence>
<element name="type" type="eppcom:minTokenType"
minOccurs="0" />
</sequence>
</complexType>
<!--
<create> command
-->
<complexType name="createType">
<sequence>
<element name="type" type="eppcom:minTokenType"
minOccurs="0" />
</sequence>
</complexType>
<!--
<update> command
-->
<complexType name="updateType">
<sequence>
<element name="chg" type="regtype:chgType" />
</sequence>
</complexType>
<complexType name="chgType">
<sequence>
<element name="type" type="eppcom:minTokenType"
minOccurs="0" />
</sequence>
</complexType>
</schema>