mirror of
https://github.com/internetee/registry.git
synced 2025-08-15 05:53:55 +02:00
keyrelay schema
This commit is contained in:
parent
ff6a85c10d
commit
0884b8c9aa
1 changed files with 63 additions and 0 deletions
63
doc/schemas/keyrelay-1.0.xsd
Normal file
63
doc/schemas/keyrelay-1.0.xsd
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<schema targetNamespace="urn:ietf:params:xml:ns:keyrelay-1.0"
|
||||||
|
xmlns:keyrelay="urn:ietf:params:xml:ns:keyrelay-1.0"
|
||||||
|
xmlns:epp="urn:ietf:params:xml:ns:epp-1.0"
|
||||||
|
xmlns:eppcom="urn:ietf:params:xml:ns:eppcom-1.0"
|
||||||
|
xmlns:secDNS="urn:ietf:params:xml:ns:secDNS-1.1"
|
||||||
|
xmlns:domain="urn:ietf:params:xml:ns:domain-1.0"
|
||||||
|
xmlns="http://www.w3.org/2001/XMLSchema"
|
||||||
|
elementFormDefault="qualified">
|
||||||
|
|
||||||
|
<annotation>
|
||||||
|
<documentation>
|
||||||
|
Extensible Provisioning Protocol v1.0 protocol
|
||||||
|
extension schema for relaying DNSSEC key material.
|
||||||
|
</documentation>
|
||||||
|
</annotation>
|
||||||
|
|
||||||
|
<import namespace="urn:ietf:params:xml:ns:epp-1.0"/>
|
||||||
|
<import namespace="urn:ietf:params:xml:ns:eppcom-1.0"/>
|
||||||
|
<import namespace="urn:ietf:params:xml:ns:secDNS-1.1"/>
|
||||||
|
<import namespace="urn:ietf:params:xml:ns:domain-1.0"/>
|
||||||
|
|
||||||
|
<element name="keyRelayData" type="keyrelay:keyRelayDataType" />
|
||||||
|
<element name="infData" type="keyrelay:infDataType" />
|
||||||
|
<element name="create" type="keyrelay:createType" />
|
||||||
|
|
||||||
|
<complexType name="createType">
|
||||||
|
<sequence>
|
||||||
|
<element name="name" type="eppcom:labelType"/>
|
||||||
|
<!-- <element name="authInfo" type="domain:authInfoType"/> -->
|
||||||
|
<element name="keyRelayData" type="keyrelay:keyRelayDataType"
|
||||||
|
maxOccurs="unbounded"/>
|
||||||
|
</sequence>
|
||||||
|
</complexType>
|
||||||
|
|
||||||
|
<complexType name="infDataType">
|
||||||
|
<sequence>
|
||||||
|
<element name="name" type="eppcom:labelType"/>
|
||||||
|
<!-- <element name="authInfo" type="domain:authInfoType"/> -->
|
||||||
|
<element name="keyRelayData" type="keyrelay:keyRelayDataType"
|
||||||
|
maxOccurs="unbounded"/>
|
||||||
|
<element name="crDate" type="dateTime"/>
|
||||||
|
<element name="reID" type="eppcom:clIDType" />
|
||||||
|
<element name="acID" type="eppcom:clIDType" />
|
||||||
|
</sequence>
|
||||||
|
</complexType>
|
||||||
|
|
||||||
|
<complexType name="keyRelayDataType">
|
||||||
|
<sequence>
|
||||||
|
<element name="keyData" type="secDNS:keyDataType" />
|
||||||
|
<element name="expiry" type="keyrelay:keyRelayExpiryType"
|
||||||
|
minOccurs="0" />
|
||||||
|
</sequence>
|
||||||
|
</complexType>
|
||||||
|
|
||||||
|
<complexType name="keyRelayExpiryType">
|
||||||
|
<choice>
|
||||||
|
<element name="absolute" type="dateTime" />
|
||||||
|
<element name="relative" type="duration" />
|
||||||
|
</choice>
|
||||||
|
</complexType>
|
||||||
|
</schema>
|
Loading…
Add table
Add a link
Reference in a new issue