<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE rfc [
<!ENTITY VERSION "0.01">
<!ENTITY RFC2119 SYSTEM "https://xml2rfc.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml">
]>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" version="3" ipr="trust200902" docName="draft-brown-epp-deleg-00" submissionType="independent" category="info" xml:lang="en" indexInclude="true">

<front>

<title abbrev="EPP DELEG Extension">
Extensible Provisioning Protocol (EPP) mapping for DELEG records
</title>

<seriesInfo value="draft-brown-epp-deleg" stream="independent" status="informational" name="Internet-Draft"/>

<author initials="G." surname="Brown" fullname="Gavin Brown">
<organization>ICANN</organization>
<address>
<postal>
<street>12025 Waterfront Drive, Suite 300</street>
<city>Los Angeles</city>
<code>90094-2536</code>
<country>US</country>
<region>CA</region>
</postal>
<email>gavin.brown@icann.org</email>
</address>
</author>

<author initials="P." surname="Hoffman" fullname="Paul Hoffman">
<organization>ICANN</organization>
<address>
<postal>
<street>12025 Waterfront Drive, Suite 300</street>
<city>Los Angeles</city>
<code>90094-2536</code>
<country>US</country>
<region>CA</region>
</postal>
<email>paul.hoffman@icann.org</email>
</address>
</author>

<date/>

<area>Internet</area>

<workgroup>Registration Extensions (REGEXT)</workgroup>

<abstract><t>
This document describes an extension to the Extensible Provisioning Protocol (<xref target="STD69"/>) which allows clients to provision <tt>DELEG</tt> records for domain names.
</t></abstract>

<note title="About this draft" removeInRFC="true"><t>
The source for this draft, and an issue tracker, may can be found at <eref target="https://github.com/gbxyz/epp-deleg-extension"/>.
</t></note>

</front>

<middle>

<section anchor="introduction">
<name>Introduction</name>

<t>
The Internet-Draft "Extensible Delegation for DNS" (<xref target="I-D.dnsop-deleg"/>) aims to provide an enhanced method of delegation in the DNS, as an alternative to the traditional <tt>NS</tt> record.
</t>

<!--<t>
This proposal has the potential to address many long-standing issues affecting the DNS. While it has yet to be brought to the IETF in a formal submission, it has generated significant interest.
</t>

<t>
Past experience with innovations in the DNS suggests that the success or failure of a new technology can depend on how quickly the provisioning side of the domain name industry moves to support the new technology.
</t> -->

<t>
<!-- Therefore, this document has been created to describe -->This document describes an extension to the EPP domain mapping (<xref target="RFC5731"/>) to allow EPP clients to provision <tt>DELEG</tt> records for domain names in an EPP server.
</t>

<t>
EPP provides mechanisms for extending the protocol by (a) adding new properties to existing object mappings and (b) definining new object mappings.
Although EPP supports two different models for traditional <tt>NS</tt> records (host attributes and host objects, as described in <xref section="1.12" sectionFormat="of" target="RFC5731"/>),
this document only uses the former, and does not define a new object mapping for <tt>DELEG</tt> records because the <tt>DELEG</tt> specification itself implements many of the features that would otherwise require an object mapping:
for example the "AliasMode" mode, which allows the delegation information for many domains to be managed as a single set.
</t>

</section>

<section>
<name>Conventions used in this document</name>

<t>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they appear in all capitals, as shown here.
</t>

<t>
In examples, "C:" represents lines sent by a protocol client and "S:" represents lines returned by a protocol server.
Indentation and white space in examples are provided only to illustrate element relationships and are not required features of this protocol.
</t>

<t>
A protocol client that is authorized to manage an existing object is described as a "sponsoring" client throughout this document.
</t>

<t>
XML is case sensitive.
Unless stated otherwise, XML specifications and examples provided in this document <bcp14>MUST</bcp14> be interpreted in the character case presented in order to develop a conforming implementation.
</t>

<t>
EPP uses XML namespaces to provide an extensible object management framework and to identify schemas required for XML instance parsing and validation.
These namespaces and schema definitions are used to identify both the base protocol schema and the schemas for managed objects.
</t>

<t>
The XML namespace prefixes used in examples (such as the string <tt>deleg</tt> in <tt>deleg:create</tt>) are solely for illustrative purposes.
A conforming implementation <bcp14>MUST NOT</bcp14> require the use of these or any other specific namespace prefixes.
</t>

</section>

<section anchor="extension-elements">
<name>Extension elements</name>

<t>
This document defines a new element, <tt>&lt;deleg:deleg&gt;</tt>, which appears in query and transform commands for domain objects.
</t>

<t>
This element is a representation of a <tt>DELEG</tt> record in XML.
Note that <tt>DELEG</tt> records have the same presentation format as <tt>SVCB</tt> records (<xref target="RFC9460"/>).
</t>

<t>
The <tt>&lt;deleg:deleg&gt;</tt> element has the following attributes:
</t>

<ul>

<li>
a <tt>priority</tt> attribute, which is an integer that corresponds to the <tt>SvcPriority</tt> field;
</li>

<li>
a <tt>target</tt> attribute, which corresponds to the <tt>TargetName</tt> field.
</li>

</ul>

<t>
The <tt>&lt;deleg:deleg&gt;</tt> element <bcp14>MAY</bcp14> have a single child element, <tt>&lt;deleg:params&gt;</tt>, which corresponds to the <tt>svcParams</tt> field.
<tt>DELEG</tt> record SvcParams are mapped onto this element's attributes, with <tt>SvcParamKey</tt> being the attribute name, and <tt>SvcParamValue</tt> being its value.
</t>

</section>

<!--
<section>
<name>Restrictions on Element Values</name>

<ol>

<li>
To avoid infinite loops, if the <tt>priority</tt> attribute of a <tt>&lt;deleg:deleg&gt;</tt> record is zero, the <tt>target</tt> attribute <bcp14>MUST NOT</bcp14> match the domain name or any subordinate name,
for example, a <tt>&lt;deleg:deleg&gt;</tt> element for the domain <tt>example.com</tt> <bcp14>MUST NOT</bcp14> have a <tt>target</tt> attribute equal to <tt>example.com</tt>, <tt>subdomain.example.com</tt>, etc.
</li>

<li>
If the <tt>priority</tt> attribute of a <tt>&lt;deleg:deleg&gt;</tt> record is non-zero, then the <tt>target</tt> attribute <bcp14>MAY</bcp14> match the domain name or any subordinate name,
but <bcp14>MUST</bcp14> have a <tt>&lt;deleg:params&gt;</tt> child element which <bcp14>MUST</bcp14> contain an <tt>ipv4hint</tt> attribute and/or an <tt>ipv6hint</tt> attribute.
</li>

<li>
EPP servers <bcp14>MUST</bcp14> accept any <tt>&lt;deleg:params&gt;</tt> attribute which is registered in the DNS Service Bindings (SVCB) registry (<xref section="14.3" sectionFormat="of" target="RFC9460"/>),
but <bcp14>MAY</bcp14> accept additional attribute names according to server policy.
</li>

</ol>

<t>
EPP servers <bcp14>MUST</bcp14> reject <tt>&lt;create&gt;</tt> and <tt>&lt;update&gt;</tt> commands containing <tt>&lt;deleg:deleg&gt;</tt> that do not conform to these restrictions with a 2005 "Parameter value syntax error" result code.
</t>

<t>
<xref section="2.4.2" sectionFormat="of" target="RFC9460"/> states that the use of SvcParams in AliasMode records is currently not defined, but that a future specification may extend AliasMode records to include SvcParams.
Therefore EPP servers <bcp14>MAY</bcp14> reject commands which contain <tt>&lt;deleg:deleg&gt;</tt> elements which have a <tt>priority</tt> attribute equal to zero,
and a child <tt>&lt;deleg:params&gt;</tt> element, with a 2306 "Parameter value policy error" result code.
</t>

</section>

-->

<section>
<name>Examples</name>

<t>
Example "AliasMode" <tt>&lt;deleg:deleg&gt;</tt> element:
</t>

<sourcecode><![CDATA[
<deleg:deleg
  priority="0"
  target="config.example.net"/>
]]></sourcecode>

<t>
Example "ServiceMode" <tt>&lt;deleg:deleg&gt;</tt> element:
</t>

<sourcecode><![CDATA[
<deleg:deleg
  priority="1"
  target="ns1.example.com">
  <deleg:params
    ipv4hint="192.0.2.1"
    ipv6hint="2001:DB8::1"/>
</deleg:deleg>
]]></sourcecode>

</section>

<section>
<name>EPP command mapping</name>

<section>
<name>EPP query commands</name>

<section>
<name>EPP <tt>&lt;info&gt;</tt> command</name>

<t>
This extension defines an additional element for EPP <tt>&lt;info&gt;</tt> responses for domain object.
</t>

<t>
When a server receives a domain or host <tt>&lt;info&gt;</tt> command from a client which included the extension namespace in the <tt>&lt;svcExtension&gt;</tt> element of the <tt>&lt;login&gt;</tt> command, the response <bcp14>MUST</bcp14> contain an <tt>&lt;extension&gt;</tt> element, which <bcp14>MUST</bcp14> contain a <tt>&lt;deleg:infData&gt;</tt> element.
This element <bcp14>MAY</bcp14> contain one or more <tt>&lt;deleg:deleg&gt;</tt> elements as described in <xref target="extension-elements"/>.
</t>

<t>
Example <tt>&lt;info&gt;</tt> response:
</t>

<sourcecode>S:&lt;?xml version="1.0" encoding="utf-8" standalone="no"?&gt;
S:&lt;epp xmlns="urn:ietf:params:xml:ns:epp-1.0"&gt;
S:  &lt;response&gt;
S:    &lt;result code="1000"&gt;
S:      &lt;msg&gt;Command completed successfully&lt;/msg&gt;
S:    &lt;/result&gt;
S:    &lt;resData&gt;
S:      &lt;domain:infData
S:        xmlns:domain="urn:ietf:params:xml:ns:domain-1.0"&gt;
S:        &lt;domain:name&gt;example.com&lt;/domain:name&gt;
S:        &lt;domain:roid&gt;EXAMPLE1-REP&lt;/domain:roid&gt;
S:        &lt;domain:status s="ok"/&gt;
S:        &lt;domain:clID&gt;ClientX&lt;/domain:clID&gt;
S:        &lt;domain:crID&gt;ClientX&lt;/domain:crID&gt;
S:        &lt;domain:crDate&gt;2023-11-08T10:14:55.0Z&lt;/domain:crDate&gt;
S:        &lt;domain:exDate&gt;2024-11-08T10:14:55.0Z&lt;/domain:exDate&gt;
S:      &lt;/domain:infData&gt;
S:    &lt;/resData&gt;
S:    &lt;extension&gt;
S:      &lt;deleg:infData
S:        xmlns:deleg="urn:ietf:params:xml:ns:epp:deleg-0.01"&gt;
S:        &lt;deleg:deleg priority="1" target="ns1.example.com"&gt;
S:          &lt;deleg:params
S:            ipv4hint="192.0.2.1"
S:            ipv6hint="2001:DB8::1"/&gt;
S:        &lt;/deleg:deleg&gt;
S:        &lt;deleg:deleg priority="1" target="ns2.example.net"&gt;
S:          &lt;deleg:params
S:            ipv4hint="192.0.2.2"
S:            ipv6hint="2001:DB8::2"/&gt;
S:        &lt;/deleg:deleg&gt;
S:      &lt;/deleg:infData&gt;
S:    &lt;/extension&gt;
S:    &lt;trID&gt;
S:      &lt;clTRID&gt;ABC-12345&lt;/clTRID&gt;
S:      &lt;svTRID&gt;54322-XYZ&lt;/svTRID&gt;
S:    &lt;/trID&gt;
S:  &lt;/response&gt;
S:&lt;/epp&gt;
</sourcecode>

</section>

</section>

<section>
<name>EPP transform commands</name>

<section>
<name>EPP <tt>&lt;create&gt;</tt> command</name>

<t>
This extension defines an additional element for EPP <tt>&lt;create&gt;</tt> commands for domain objects.
</t>

<t>
The <tt>&lt;command&gt;</tt> element of the <tt>&lt;create&gt;</tt> command frame <bcp14>MAY</bcp14> contain an <tt>&lt;extension&gt;</tt> element which <bcp14>MAY</bcp14> contain a <tt>&lt;deleg:create&gt;</tt> element.
This element <bcp14>MUST</bcp14> contain one or more <tt>&lt;deleg:deleg&gt;</tt> records as described in <xref target="extension-elements"/>.
</t>

<t>
Example <tt>&lt;create&gt;</tt> command:
</t>

<sourcecode>C:&lt;?xml version="1.0" encoding="UTF-8" standalone="no"?&gt;
C:&lt;epp xmlns="urn:ietf:params:xml:ns:epp-1.0"&gt;
C:  &lt;command&gt;
C:    &lt;create&gt;
C:      &lt;domain:create
C:        xmlns:domain="urn:ietf:params:xml:ns:domain-1.0"&gt;
C:        &lt;domain:name&gt;example.com&lt;/domain:name&gt;
C:        &lt;domain:period unit="y"&gt;1&lt;/domain:period&gt;
C:        &lt;domain:authInfo&gt;
C:          &lt;domain:pw/&gt;
C:        &lt;/domain:authInfo&gt;
C:      &lt;/domain:create&gt;
C:    &lt;/create&gt;
C:    &lt;extension&gt;
C:      &lt;deleg:create
C:        xmlns:deleg="urn:ietf:params:xml:ns:epp:deleg-0.01"&gt;
C:        &lt;deleg:deleg priority="1" target="ns1.example.com"&gt;
C:          &lt;deleg:params
C:            ipv4hint="192.0.2.1"
C:            ipv6hint="2001:DB8::1"/&gt;
C:        &lt;/deleg:deleg&gt;
C:        &lt;deleg:deleg priority="1" target="ns2.example.net"&gt;
C:          &lt;deleg:params
C:            ipv4hint="192.0.2.2"
C:            ipv6hint="2001:DB8::2"/&gt;
C:        &lt;/deleg:deleg&gt;
C:      &lt;/deleg:create&gt;
C:    &lt;/extension&gt;
C:    &lt;clTRID&gt;ABC-12345&lt;/clTRID&gt;
C:  &lt;/command&gt;
C:&lt;/epp&gt;
</sourcecode>

</section>

<section>
<name>EPP <tt>&lt;update&gt;</tt> command</name>

<t>
This extension defines an additional element for EPP <tt>&lt;update&gt;</tt> commands for domain objects.
</t>

<t>
The <tt>&lt;command&gt;</tt> element of the <tt>&lt;create&gt;</tt> command frame <bcp14>MAY</bcp14> contain an <tt>&lt;extension&gt;</tt> element which <bcp14>MAY</bcp14> contain a <tt>&lt;deleg:update&gt;</tt> element.
</t>

<t>
The <tt>&lt;deleg:update&gt;</tt> element has the following child elements:
</t>

<ul>
  <li>An <bcp14>OPTIONAL</bcp14> <tt>&lt;deleg:add&gt;</tt> element, containing any <tt>&lt;deleg:deleg&gt;</tt> records to be added to the domain; and</li>
  <li>An <bcp14>OPTIONAL</bcp14> <tt>&lt;deleg:rem&gt;</tt> element, containing any <tt>&lt;deleg:deleg&gt;</tt> records to be removed from the domain.</li>
</ul>

<t>
Example <tt>&lt;update&gt;</tt> command, which removes one <tt>&lt;deleg:deleg&gt;</tt> record and adds another:
</t>

<sourcecode>C:&lt;?xml version="1.0" encoding="UTF-8" standalone="no"?&gt;
C:&lt;epp xmlns="urn:ietf:params:xml:ns:epp-1.0"&gt;
C:  &lt;command&gt;
C:    &lt;update&gt;
C:      &lt;domain:update
C:        xmlns:domain="urn:ietf:params:xml:ns:domain-1.0"&gt;
C:        &lt;domain:name&gt;example.com&lt;/domain:name&gt;
C:      &lt;/domain:update&gt;
C:    &lt;/update&gt;
C:    &lt;extension&gt;
C:      &lt;deleg:update xmlns:deleg="urn:ietf:params:xml:ns:epp:deleg-0.01"&gt;
C:        &lt;deleg:add&gt;
C:          &lt;deleg:deleg priority="1" target="ns3.example.org"&gt;
C:            &lt;deleg:params
C:              ipv4hint="192.0.2.3"
C:              ipv6hint="2001:DB8::3"/&gt;
C:          &lt;/deleg:deleg&gt;
C:        &lt;/deleg:add&gt;
C:        &lt;deleg:rem&gt;
C:          &lt;deleg:deleg priority="1" target="ns1.example.com"&gt;
C:            &lt;deleg:params
C:              ipv4hint="192.0.2.1"
C:              ipv6hint="2001:DB8::1"/&gt;
C:          &lt;/deleg:deleg&gt;
C:        &lt;/deleg:rem&gt;
C:      &lt;/deleg:update&gt;
C:    &lt;/extension&gt;
C:    &lt;clTRID&gt;ABC-12345&lt;/clTRID&gt;
C:  &lt;/command&gt;
C:&lt;/epp&gt;
</sourcecode>

<t>
Example <tt>&lt;update&gt;</tt> command, which removes one <tt>&lt;deleg:deleg&gt;</tt> record but does not add any:
</t>

<sourcecode>C:&lt;?xml version="1.0" encoding="UTF-8" standalone="no"?&gt;
C:&lt;epp xmlns="urn:ietf:params:xml:ns:epp-1.0"&gt;
C:  &lt;command&gt;
C:    &lt;update&gt;
C:      &lt;domain:update
C:        xmlns:domain="urn:ietf:params:xml:ns:domain-1.0"&gt;
C:        &lt;domain:name&gt;example.com&lt;/domain:name&gt;
C:      &lt;/domain:update&gt;
C:    &lt;/update&gt;
C:    &lt;extension&gt;
C:      &lt;deleg:update xmlns:deleg="urn:ietf:params:xml:ns:epp:deleg-0.01"&gt;
C:        &lt;deleg:rem&gt;
C:          &lt;deleg:deleg priority="1" target="ns3.example.org"&gt;
C:            &lt;deleg:params
C:              ipv4hint="192.0.2.3"
C:              ipv6hint="2001:DB8::3"/&gt;
C:          &lt;/deleg:deleg&gt;
C:        &lt;/deleg:rem&gt;
C:      &lt;/deleg:update&gt;
C:    &lt;/extension&gt;
C:    &lt;clTRID&gt;ABC-12345&lt;/clTRID&gt;
C:  &lt;/command&gt;
C:&lt;/epp&gt;
</sourcecode>

<t>
Example <tt>&lt;update&gt;</tt> command, which adds one <tt>&lt;deleg:deleg&gt;</tt> record but does not remove any:
</t>

<sourcecode>C:&lt;?xml version="1.0" encoding="UTF-8" standalone="no"?&gt;
C:&lt;epp xmlns="urn:ietf:params:xml:ns:epp-1.0"&gt;
C:  &lt;command&gt;
C:    &lt;update&gt;
C:      &lt;domain:update
C:        xmlns:domain="urn:ietf:params:xml:ns:domain-1.0"&gt;
C:        &lt;domain:name&gt;example.com&lt;/domain:name&gt;
C:      &lt;/domain:update&gt;
C:    &lt;/update&gt;
C:    &lt;extension&gt;
C:      &lt;deleg:update xmlns:deleg="urn:ietf:params:xml:ns:epp:deleg-0.01"&gt;
C:        &lt;deleg:add&gt;
C:          &lt;deleg:deleg priority="1" target="ns3.example.org"&gt;
C:            &lt;deleg:params
C:              ipv4hint="192.0.2.3"
C:              ipv6hint="2001:DB8::3"/&gt;
C:          &lt;/deleg:deleg&gt;
C:        &lt;/deleg:add&gt;
C:      &lt;/deleg:update&gt;
C:    &lt;/extension&gt;
C:    &lt;clTRID&gt;ABC-12345&lt;/clTRID&gt;
C:  &lt;/command&gt;
C:&lt;/epp&gt;
</sourcecode>

</section>

</section>

</section>

<section>
<name>Relationship between <tt>DELEG</tt> and host objects/attributes</name>

<t>
It is anticpated that most domains will need both <tt>DELEG</tt> and traditional <tt>NS</tt> records published in their parent zone for the foreseeable future.
</t>

<t>
Therefore, EPP servers <bcp14>SHOULD</bcp14> allow clients to configure domain names to have both <tt>DELEG</tt> records and host objects or host attributes.
</t>

</section>

<section>
<name>Security Considerations</name>

<t>Under the initial design of the <tt>DELEG</tt> record, the security implications of propoerly carrying the record in EPP,
and name servers using such information in zones, are similar to the security implications for <tt>NS</tt> records.
If there are later extensions to the <tt>DELEG</tt> record, those extension may have different security considerations that will need to be documented.</t>

</section>

<section anchor="formal-syntax">
<name>Formal syntax</name>

<t>
The formal syntax presented here is a complete schema representation of the extension suitable for automated validation of EPP XML instances.
</t>

<sourcecode>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;schema
  xmlns="http://www.w3.org/2001/XMLSchema"
  targetNamespace="urn:ietf:params:xml:ns:epp:deleg-0.01"
  xmlns:deleg="urn:ietf:params:xml:ns:epp:deleg-0.01"
  xmlns:eppcom="urn:ietf:params:xml:ns:eppcom-1.0"
  elementFormDefault="qualified"&gt;
  &lt;annotation&gt;
    &lt;documentation&gt;
      Extensible Provisioning Protocol v1.0 extension
      schema for DELEG records.
    &lt;/documentation&gt;
  &lt;/annotation&gt;

  &lt;import namespace="urn:ietf:params:xml:ns:eppcom-1.0"/&gt;

  &lt;element name="infData" type="deleg:containerType"/&gt;
  &lt;element name="create" type="deleg:containerType"/&gt;
  &lt;element name="update" type="deleg:updateType"/&gt;

  &lt;complexType name="updateType"&gt;
    &lt;sequence&gt;
      &lt;element name="add" type="deleg:containerType"
        minOccurs="0"/&gt;
      &lt;element name="rem" type="deleg:containerType"
        minOccurs="0"/&gt;
    &lt;/sequence&gt;
  &lt;/complexType&gt;

  &lt;complexType name="containerType"&gt;
    &lt;sequence&gt;
      &lt;element name="deleg" type="deleg:delegType"
        minOccurs="0"
        maxOccurs="unbounded"/&gt;
    &lt;/sequence&gt;
  &lt;/complexType&gt;

  &lt;complexType name="delegType"&gt;
    &lt;sequence&gt;
      &lt;element name="params" type="deleg:paramType"
        minOccurs="0"/&gt;
    &lt;/sequence&gt;
    &lt;attribute name="priority" type="unsignedShort"/&gt;
    &lt;attribute name="target" type="eppcom:labelType"/&gt;
  &lt;/complexType&gt;

  &lt;complexType name="paramType"&gt;
    &lt;anyAttribute processContents="skip"/&gt;
  &lt;/complexType&gt;
&lt;/schema&gt;
</sourcecode>

</section>

<section>
<name>IANA considerations</name>

<section>
<name>XML Namespace</name>

<t>
This document uses URNs to describe XML namespaces and XML schemas conforming to a registry mechanism described in <xref target="RFC3688"/>.
The following URI assignment has been made by IANA:
</t>

<t>
Registration for the DELEG namespace:
</t>

<t>
<strong>URI:</strong> <tt>urn:ietf:params:xml:ns:epp:deleg-&VERSION;</tt>
</t>

<t>
<strong>Registrant Contact:</strong> See the author(s) of this document
</t>

<t>
<strong>XML:</strong> None. Namespace URIs do not represent an XML specification
</t>

<t>
Registration for the DELEG XML schema:
</t>

<t>
<strong>URI:</strong>
<tt>urn:ietf:params:xml:schema:epp:deleg-&VERSION;</tt>
</t>

<t>
<strong>Registrant Contact:</strong>
See the author(s) of this document
</t>

<t>
<strong>XML:</strong>
See the "<xref target="formal-syntax" format="title"/>" section of this document
</t>

</section>

<section>
<name>EPP Extension Registry</name>

<t>
The EPP extension described in this document has been registered by the IANA in the Extensions for the "Extensible Provisioning Protocol (EPP)" registry described in <xref target="RFC7451"/>.
The details of the registration are as follows:
</t>

<t>
<strong>Name of Extension:</strong> Extensible Provisioning Protocol (EPP) Mapping for DELEG records
</t>

<t>
<strong>Document Status:</strong>
Standards Track
</t>

<t>
<strong>Reference:</strong>
URL of this document
</t>

<t>
<strong>Registrant Name and Email Address:</strong>
See the author(s) of this document
</t>

<t>
<strong>TLDs:</strong>
Any
</t>

<t>
<strong>IPR Disclosure:</strong>
None
</t>

<t>
<strong>Status:</strong>
Active
</t>

<t>
<strong>Notes:</strong>
None
</t>

</section>

</section>

</middle>

<back>

<displayreference target="I-D.dnsop-deleg" to="DELEG"/>

<references><name>Normative References</name>

<xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml"/>
<xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.3688.xml"/>
<xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.7451.xml"/>
<xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8174.xml"/>
<xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9460.xml"/>
<xi:include href="https://bib.ietf.org/public/rfc/bibxml-rfcsubseries/reference.STD.0069.xml"/>
<xi:include href="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.dnsop-deleg.xml"/>

</references>

</back>

</rfc>
