mirror of
https://github.com/google/nomulus.git
synced 2025-05-14 08:27:14 +02:00
Add regtype EPP extension XSD
Copied from v0.2 of https://gitlab.centralnic.com/centralnic/epp-registration-type-extension/blob/master/regtype.xsd ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=123144767
This commit is contained in:
parent
3abb29adf8
commit
40a6dbe4fe
1 changed files with 68 additions and 0 deletions
68
java/google/registry/xml/xsd/regtype.xsd
Normal file
68
java/google/registry/xml/xsd/regtype.xsd
Normal file
|
@ -0,0 +1,68 @@
|
||||||
|
<?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>
|
Loading…
Add table
Add a link
Reference in a new issue