<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE rfc SYSTEM "http://xml.resource.org/authoring/rfc2629.dtd"
[
  <!ENTITY RFC2119 PUBLIC ''
   'http://xml.resource.org/public/rfc/bibxml/reference.RFC.2119.xml'>
  <!ENTITY RFC5890 PUBLIC ''
   'http://xml.resource.org/public/rfc/bibxml/reference.RFC.5890.xml'>
  <!ENTITY RFC7230 PUBLIC ''
   'http://xml.resource.org/public/rfc/bibxml/reference.RFC.7230.xml'>
  <!ENTITY RFC7480 PUBLIC ''
   'http://xml.resource.org/public/rfc/bibxml/reference.RFC.7480.xml'>
  <!ENTITY RFC7481 PUBLIC ''
   'http://xml.resource.org/public/rfc/bibxml/reference.RFC.7481.xml'>
  <!ENTITY RFC7482 PUBLIC ''
   'http://xml.resource.org/public/rfc/bibxml/reference.RFC.7482.xml'>
  <!ENTITY RFC7483 PUBLIC ''
   'http://xml.resource.org/public/rfc/bibxml/reference.RFC.7483.xml'>
  <!ENTITY RFC7942 PUBLIC ''
   'http://xml.resource.org/public/rfc/bibxml/reference.RFC.7942.xml'>
  <!ENTITY RFC8288 PUBLIC ''
   'http://xml.resource.org/public/rfc/bibxml/reference.RFC.8288.xml'>
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt"?>

<?rfc toc="yes"?>
<?rfc tocompact="yes"?>
<?rfc tocdepth="4"?>
<?rfc compact="yes"?>
<?rfc subcompact="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc iprnotified="no"?>

<rfc category="std" docName="draft-ietf-regext-rdap-partial-response-08" ipr="trust200902">
  <front>
    <title abbrev="RDAP Partial Response">Registration Data Access Protocol (RDAP) Partial Response</title>
       
    <author fullname="Mario Loffredo" initials="M." surname="Loffredo">
      <organization>IIT-CNR/Registro.it</organization>
      <address>
        <postal>
          <street>Via Moruzzi,1</street>
          <city>Pisa</city>
          <country>IT</country>
          <code>56124</code>
        </postal>
        <email>mario.loffredo@iit.cnr.it</email>
        <uri>http://www.iit.cnr.it</uri>
      </address>
    </author>

    <author fullname="Maurizio Martinelli" initials="M." surname="Martinelli">
      <organization>IIT-CNR/Registro.it</organization>
      <address>
        <postal>
          <street>Via Moruzzi,1</street>
          <city>Pisa</city>
          <country>IT</country>
          <code>56124</code>
        </postal>
        <email>maurizio.martinelli@iit.cnr.it</email>
        <uri>http://www.iit.cnr.it</uri>
      </address>
    </author>

    <date/>
    <area>Applications and Real-Time</area>
    <workgroup>Registration Protocols Extensions</workgroup>
    <keyword>RDAP</keyword>
    <keyword>Partial response</keyword>
    
    <abstract>
      <t>The Registration Data Access Protocol (RDAP) does not include capabilities to request partial responses. In fact, according to the user authorization, the server can only return full responses. A partial response capability, especially in the case of search queries, could bring benefits to both clients and servers. This document describes an RDAP query extension that allows clients to specify their preference for obtaining a partial response.</t>
    </abstract>
  </front>

  <middle>
    <section anchor="introduction"  title="Introduction">
      <t>The use of partial response in RESTful API (<xref target="REST"/>) design is very common. The rationale is quite simple: instead of returning objects in API responses with all data fields, only a subset of fields in each result object is returned. The benefit is obvious: less data transferred over the network means less bandwidth usage, faster server response, less CPU time spent both on the server and the client, as well as less memory usage on the client.</t>
      
      <t>Several leading APIs providers (e.g. LinkedIn <xref target="LINKEDIN"/>, Facebook <xref target="FACEBOOK"/>, Google <xref target="GOOGLE"/>) implement the partial response feature by providing an optional query parameter by which users require the fields they wish to receive. Partial response is also considered a leading principle by many best practices guidelines in REST APIs implementation (<xref target="REST-API1"/>, <xref target="REST-API2"/>) in order to improve performance, save on bandwidth and possibly accelerate the overall interaction. In other contexts, for example in digital libraries and bibliographic catalogues, servers can provide responses according to different element sets (i.e. &quot;brief&quot; to get back a short response and &quot;full&quot; to get back the complete response)</t>

      <t>Currently, RDAP does not provide a client with any way to request a partial response: the server can only provide the client with the full response (<xref target="RFC7483"/>). Furthermore, servers cannot define the limits of the results according to partial responses and this causes strong inefficiencies.</t>

      <t>The protocol described in this specification extends RDAP search capabilities to enable partial responses through the provisioning of pre-defined sets of fields the user can request to an RDAP service by adding a new query parameter. The service is implemented using the Hypertext Transfer Protocol (HTTP) (<xref target="RFC7230"/>) and the conventions described in RFC 7480 (<xref target="RFC7480"/>).</t>
   
      <section title="Conventions Used in This Document">
      	<t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119 (<xref target="RFC2119"/>).</t>
      </section>
   </section>
      
      <section anchor="rdap-path-segment-specification" title="RDAP Path Segment Specification">

      	<t>The path segment defined in this section is an OPTIONAL extension of search path segments defined in RFC 7482 (<xref target="RFC7482"/>). This document defines an RDAP query parameter, &quot;fieldSet&quot;, whose value is a string identifying a server pre-defined set of fields (<xref target="fieldSet-in-query-example"/>).</t>

<t>This solution can be implemented by the RDAP providers with less effort than fields selection and easily requested by consumers. The considerations that has led to opt for this solution are reported in more detail in <xref target="approaches-to-partial-response-implementation"/>.</t>

      <figure anchor="fieldSet-in-query-example" title="Example of RDAP search query reporting the &quot;fieldSet&quot; parameter">
        <artwork xml:space="preserve"><![CDATA[

https://example.com/rdap/domains?name=example*.com&fieldSet=afieldset
        ]]></artwork>
       </figure>


     <section anchor="rdap-subsetting-metadata" title="Subsetting Metadata">

     <t>According to most advanced principles in REST design, collectively known as HATEOAS (Hypermedia as the Engine of Application State) (<xref target="HATEOAS"/>), a client entering a REST application through an initial URI should use the server-provided links to dynamically discover available actions and access the resources it needs. In this way, the client is not requested to have prior knowledge of the service and, consequently, to hard code the URIs of different resources. This would allow the server to make URI changes as the API evolves without breaking the clients. Definitively, a REST service should be as self-descriptive as possible.</t>

      <t>Therefore, servers implementing the query parameter described in this specification SHOULD provide additional information in their responses about the available field sets. Such information is collected in a new data structure named &quot;subsetting_metadata&quot; containing the following properties:</t>
        <t><list style="symbols">
	  <t>&quot;currentFieldSet&quot;: &quot;String&quot; (REQUIRED) either the value of &quot;fieldSet&quot; parameter as specified in the query string or the field set applied by default;<vspace blankLines='1'/></t>
	  <t>&quot;availableFieldSets&quot;: &quot;AvailableFieldSet[]&quot;  (OPTIONAL) an array of objects each one describing an alternate available field set. Members are:
          <list style="symbols">
	     <t>&quot;name&quot;: &quot;String&quot; (REQUIRED) the field set name;</t>
          <t>&quot;default&quot;: &quot;Boolean&quot; (REQUIRED) whether the field set is applied by default;</t>
          <t>&quot;description&quot;: &quot;String&quot;  (OPTIONAL) a human-readable description of the field set;</t>
	  <t>&quot;links&quot;: &quot;Link[]&quot; (OPTIONAL) an array of links as described in RFC 8288 (<xref target="RFC8288"/>) containing the query string that applies the field set.</t>
	  </list></t>
	</list></t>

   <section anchor="rdap-conformance" title="RDAP Conformance">
      <t>Servers returning the &quot;subsetting_metadata&quot; section in their responses MUST include &quot;subsetting&quot; in the rdapConformance array.</t>
   </section>

     <section anchor="subsetting_links" title="Representing Subsetting Links">
      	<t>An RDAP server MAY use the &quot;links&quot; array of the &quot;subsetting_metadata&quot; element to provide ready-made references (<xref target="RFC8288"/>) to the available field sets (<xref target="subset-link-in-response-example"/>). Each link represents a reference to an alternate view of the results.</t>

     <figure anchor="subset-link-in-response-example" title="Example of a &quot;subsetting_metadata&quot; instance">
        <artwork xml:space="preserve"><![CDATA[

{
  "rdapConformance": [
    "rdap_level_0",
    "subsetting"
  ],
  ...
  "subsetting_metadata": {
     "currentFieldSet": "afieldset",
     "availableFieldSets": [
     {
     "name": "anotherfieldset",
     "description": "Contains some fields",
     "default": false,
     "links": [
        {
        "value": "https://example.com/rdap/domains?name=*nr.com
                  &fieldSet=afieldset",
        "rel": "alternate",
        "href": "https://example.com/rdap/domains?name=*nr.com
                 &fieldSet=anotherfieldset",
        "title": "Result Subset Link",
        "type": "application/rdap+json"
        },
        ...
     ]      
  },
  "domainSearchResults": [
    ...
  ]
}
        ]]></artwork>
       </figure>

      </section>
      </section>
      </section>

<section anchor="rdap-field-set-relationships" title="Dealing with Relationships">
     	<t>Some additional considerations can be made about how second level objects could be represented within a field set. In fact, since the topmost objects could be returned according to different field sets, the same thing could go for their related objects. As a consequence, the response could contain either no relationship or associated objects which are in turn provided according to a field set.</t>          	
</section>

<section anchor="basic-field-sets" title="Basic Field Sets">
	
	<t>In order to improve interoperability between clients and servers, the name, as well as the list of fields for each field set, should be shared by most of RDAP providers. This section defines three basic field sets which servers MAY implement to facilitate their interaction with clients:</t>

        <t><list style="symbols">
	  <t>&quot;id&quot;: the server provides only the key field, respectively: &quot;handle&quot; for entities, &quot;ldhName&quot; for domains and nameservers. If a returned domain or nameserver is an IDN (<xref target="RFC5890"/>), then the &quot;unicodeName&quot; field MUST be included in the response. This field set could be used when the client wants to simply obtain a collection of object identifiers (<xref target="fieldSet-id-response-example"/>);<vspace blankLines='1' /></t>
	  <t>&quot;brief&quot;: it contains the fields that can be included in a &quot;short&quot; response. This field set could be used when the client is asking for a subset of the full response which gives a basic knowledge of each object;<vspace blankLines='1'/></t>
	  <t>&quot;full&quot;: it contains all the information the server can provide for a particular object.</t>
	</list></t>

      <t>The &quot;objectClassName&quot; field is implicitly included in each of the above field sets. RDAP providers are RECOMMENDED to include a &quot;self&quot; link in each field set. RDAP providers MAY also add any property providing service information.</t>

      <t>Fields included in &quot;brief&quot; and &quot;full&quot; field sets could be returned according to the user access levels.</t>

      <figure anchor="fieldSet-id-response-example" title="Example of RDAP response according to the &quot;id&quot; field set">
        <artwork xml:space="preserve">
        
{
  "rdapConformance": [
	"rdap_level_0",
  ],
  ...
  "domainSearchResults": [
    {
      "objectClassName": "domain",
      "ldhName": "example1.com",
      "links": [
        {
        "value": "https://example.com/rdap/domain/example1.com",
        "rel": "self",
        "href": "https://example.com/rdap/domain/example1.com",
        "type": "application/rdap+json"
        }
      ],
    },
    {
      "objectClassName": "domain",
      "ldhName": "example2.com",
      "links": [
        {
        "value": "https://example.com/rdap/domain/example2.com",
        "rel": "self",
        "href": "https://example.com/rdap/domain/example2.com",
        "type": "application/rdap+json"
        }
      ],
    },
    ...
  ]
}
        </artwork>
       </figure>

</section>

<section anchor="negative-answers" title="Negative Answers">
      <t>Each request including an unsupported field set SHOULD obtain an HTTP 400 (Bad Request) response code.</t>

	<t>Optionally, the response MAY include additional information regarding the negative answer in the HTTP entity body.</t>
   </section>

    <section anchor="impl-status" title="Implementation Status">
      <t>NOTE: Please remove this section and the reference to RFC 7942 prior to publication as an RFC.</t>
      
      <t>This section records the status of known implementations of the protocol defined by this specification at the time of posting of this Internet-Draft, and is based on a proposal described in RFC 7942 (<xref target="RFC7942"/>). The description of implementations in this section is intended to assist the IETF in its decision processes in progressing drafts to RFCs. Please note that the listing of any individual implementation here does not imply endorsement by the IETF. Furthermore, no effort has been spent to verify the information presented here that was supplied by IETF contributors. This is not intended as, and must not be construed to be, a catalog of available implementations or their features. Readers are advised to note that other implementations may exist.</t>
      
      <t>According to RFC 7942, "this will allow reviewers and working groups to assign due consideration to documents that have the benefit of running code, which may serve as evidence of valuable experimentation and feedback that have made the implemented protocols more mature. It is up to the individual working groups to use this information as they see fit".</t>
      
      <section anchor="iit-cnr-registro-it" title="IIT-CNR/Registro.it">
        <t><list style="none">
	  <t>Responsible Organization: Institute of Informatics and Telematics of National Research Council (IIT-CNR)/Registro.it</t>
	  <t>Location: https://rdap.pubtest.nic.it/</t>
	  <t>Description: This implementation includes support for RDAP queries using data from .it public test environment.</t>
	  <t>Level of Maturity: This is an "alpha" test implementation.</t>
	  <t>Coverage: This implementation includes all of the features described in this specification.</t>
	  <t>Contact Information: Mario Loffredo, mario.loffredo@iit.cnr.it</t>
	</list></t>
      </section>

      <section anchor="apnic" title="APNIC">
        <t><list style="none">
	  <t>Responsible Organization: Asia-Pacific Network Information Centre</t>
	  <t>Location: https://github.com/APNIC-net/rdap-rmp-demo/tree/partial-response</t>
	  <t>Description: A proof-of-concept for RDAP mirroring.</t>
	  <t>Level of Maturity: This is a proof-of-concept implementation.</t>
	  <t>Coverage: This implementation includes all of the features described in this specification.</t>
	  <t>Contact Information: Tom Harrison, tomh@apnic.net</t>
	</list></t>
      </section>

    </section>

   <section anchor="IANA-considerations" title="IANA Considerations">

	<t>IANA is requested to register the following value in the RDAP Extensions Registry:</t>

<t><list style="none">
      <t>Extension identifier: subsetting</t>
      <t>Registry operator: Any</t>
      <t>Published specification: This document.</t>
      <t>Contact: IESG &lt;iesg@ietf.org&gt;</t>
      <t>Intended usage: This extension describes a best practice for partial response provisioning.</t>
</list></t>

   </section>

   <section anchor="security-considerations" title="Security Considerations">
      <t>The search query typically requires more server resources (such as memory, CPU cycles, and network bandwidth) when compared to the lookup query. This increases the risk of server resource exhaustion and subsequent denial of service due to abuse. Partial response can contribute together with other strategies (e.g. restricting search functionality, limiting the rate of search requests, truncating and paging results) to mitigate this risk.</t>

      <t>Furthermore, partial response can support RDAP operators to implement a versatile access control policy through the HTTP authentication mechanisms as described in RFC 7481 (<xref target="RFC7481"/>). In fact, RDAP operators can follow different, not alternative, approaches to the building of responses according to the user access levels:</t>

        <t><list style="symbols">
	  <t>the list of fields for each set can be different according to the user access levels;<vspace blankLines='1' /></t>
	  <t>some field sets could be available only to some users.</t>
	</list></t>

      <t>Servers can also define different results limits according to the available field sets, so a more flexible truncation strategy can be realized.</t>

      <t>Therefore, the new query parameter presented in this document provides the RDAP operators with a way to implement a secure server without penalizing its efficiency.</t>
   </section>

    <section title="Acknowledgements">
      <t>The authors would like to acknowledge Scott Hollenbeck, Tom Harrison, Karl Heinz Wolf and Jasdip Singh for their contribution to this document.</t>
    </section>
  </middle>
  <back>
    <references title="Normative References">
      &RFC2119;
      &RFC5890;
      &RFC7230;
      &RFC7480;
      &RFC7481;
      &RFC7482;
      &RFC7483;
	 &RFC7942;
      &RFC8288;
    </references>
    
    <references title="Informative References">
    <reference anchor='CQL' target='https://github.com/gregwhitaker/catnap/wiki/Catnap-Query-Language-Reference'>
		<front>
		<title>Catnap Query Language Reference</title>
		<author initials='G.' surname='Whitaker' fullname='Greg Whitaker'>
		</author>
		<date year='2017' month='September' />		
		</front>
	</reference>
    <reference anchor='FACEBOOK' target='https://developers.facebook.com/docs/graph-api/using-graph-api'>
		<front>
		<title>facebook for developers - Using the Graph API</title>
		<author>
		<organization>facebook.com</organization>		
		</author>
		<date year='2017' month='July' />		
		</front>
	</reference>
    <reference anchor='GOOGLE' target='http://googlecode.blogspot.it/2010/03/making-apis-faster-introducing-partial.html'>
		<front>
		<title>Making APIs Faster: Introducing Partial Response and Partial Update</title>
		<author>
		<organization>google.com</organization>		
		</author>
		<date year='2010' month='March' />		
		</front>
	</reference>
    <reference anchor='HATEOAS' target='https://www.e4developer.com/2018/02/16/hateoas-simple-explanation/'>
		<front>
		<title>HATEOAS - a simple explanation</title>
		<author initials='B.' surname='Jedrzejewski' fullname='Bartosz Jedrzejewski'>
		</author>
                <date year='2018'/>		
		</front>
	</reference>
    <reference anchor='LINKEDIN' target='https://blog.linkedin.com/2009/07/08/brandon-duncan-java-one-building-consistent-restful-apis-in-a-high-performance-environment'>
		<front>
		<title>Java One 2009: Building Consistent RESTful APIs in a High Performance Environment</title>
		<author>
		<organization>linkedin.com</organization>		
		</author>
		<date year='2009' month='July' />		
		</front>
	</reference>
    <reference anchor='REST' target='http://www.restapitutorial.com/media/RESTful_Best_Practices-v1_1.pdf'>
		<front>
		<title>Architectural Styles and the Design of Network-based Software Architectures</title>
		<author initials='R.' surname='Fielding' fullname='Roy Thomas Fielding'>
                <organization>PH.D. DISSERTATION, UNIVERSITY OF CALIFORNIA, IRVINE</organization>
		</author>
		<date year='2000'/>
		</front>
	</reference>
    <reference anchor='REST-API1'>
		<front>
		<title>RESTful Java Web Services - Second Edition</title>
		<author initials='P.' surname='Jobinesh' fullname='Purushothaman Jobinesh'>
		</author>
		<date year='2015' month='September' />
		</front>
	</reference>
    <reference anchor='REST-API2'>
		<front>
		<title>REST API Design Rulebook</title>
		<author initials='M.' surname='Masse' fullname='Mark Masse'>
		</author>
		<date year='2011' month='October' />
		</front>
	</reference>      
    </references>

   <section anchor="approaches-to-partial-response-implementation" title="Approaches to Partial Response Implementation">

      <t>Looking at the implementation experiences described in <xref target="introduction"/>, two approaches to the implementation of partial response can be detected:</t>

        <t><list style="symbols">
	  <t>the client declares explicitly the data fields to get back;<vspace blankLines='1' /></t>
	  <t>the client declares a name identifying a server pre-defined set of data fields.</t>
	</list></t>

      <t>The former is more flexible than the latter because clients can specify all the data fields they need. However, it has some drawbacks:</t>

        <t><list style="symbols">
	  <t>fields have to be declared according to a given syntax. This is a simple task when the data structure of the object is flat, but it is much more difficult when the object has a tree structure like the one of a JSON object. The presence of arrays and deep nested objects contributes to complicate both the syntax definition of the query and, consequently, the processing phase on the server side;<vspace blankLines='1' /></t>
	  <t>clients should perfectly know the returned data structure to avoid cases when the requested fields are invalid;<vspace blankLines='1' /></t>
	  <t>the request of some fields might not match the user access levels. Clients might put unauthorized fields in their requests and servers should define a strategy for providing a response: returning always an error response or returning a response that ignores the unauthorized fields.</t>
	</list></t>

   <section anchor="specific-issues-in-rdap" title="Specific Issues Raised by RDAP">

      <t>In addition to those listed above, RDAP responses raise some specific issues:</t>

        <t><list style="symbols">
	  <t>most of the relevant information of the entity object is included in the jCard but such information cannot be easily selected because it is split into the items of a jagged array;<vspace blankLines='1' /></t>
	  <t>RDAP responses contain some properties providing service information (e.g. rdapConformance, links, notices, remarks, etc.) which are not normally selected but they are just as important. They could be returned anyway but, in this case, the server would provide unrequested data.</t>
	</list></t>

        <t>As an example compliant to the first approach, the Catnap Query Language (<xref target="CQL"/>) is a comprehensive expression language that can be used to customize the JSON response of a RESTful web service. The practical application of CQL to RDAP responses points out that declaring explicitly the output fields would still be acceptable when a few fields are requested but it would become very complicated if the fields should be more. In the following, two CQL expressions for a search domain query are shown (<xref target="cql-example"/>): in the first, only objectClassName and ldhName are requested, in the second, the fields of a possible WHOIS-like response are listed.</t>

      <figure anchor="cql-example" title="Examples of CQL expressions for a search domain query">
        <artwork xml:space="preserve"><![CDATA[

https://example.com/rdap/domains?name=example*.com
        &fields=domainSearchResults(objectClassName,ldhName)

https://example.com/rdap/domains?name=example*.com
        &fields=domainSearchResults(objectClassName,ldhName,unicodeName,
                status,
                events(eventAction,eventDate),
                entities(objectClassName,handle,roles),
                nameservers(objectClassName,ldhName))
        ]]></artwork>
       </figure>

        <t>The latter approach seems to facilitate RDAP interoperability. In fact, servers can define some basic field sets which, if known to the clients, can increase the probability to get a valid response. The usage of field sets lets the query string be less complex. In addition, the definition of pre-defined sets of fields makes easier to establish the results limits.</t>	
        <t>Finally, considering that there is not a real need for RDAP users to have the maximum flexibility in defining all the possible sets of logically connected fields (e.g. users interested in domains usually need to know the status, the creation date, the expiry date of each domain), the latter approach is preferred.</t>

       </section>
      </section>


    <section title="Change Log">
      <t>
        <list style="hanging">
          <t hangText="00:">Initial working group version ported from draft-loffredo-regext-rdap-partial-response-03</t>
          <t hangText="01:">Removed &quot;FOR DISCUSSION&quot; items. Changed the basic field sets from REQUIRED to OPTIONAL. Removed the definition of fields included in &quot;brief&quot; field set. Provided a more detailed description of &quot;subsetting_metadata&quot; structure. Removed some references.</t>
          <t hangText="02:">Added the &quot;Negative Answers&quot; section. Changed &quot;IANA Considerations&quot; section.</t>
          <t hangText="03:">Added the &quot;unicodeName&quot; field in the id fieldSet when a returned domain or nameserver is an IDN. Added RFC5890 to &quot;Normative References&quot; section.</t>
          <t hangText="04:">Recommended the RDAP providers to include a &quot;self&quot; link in any field set other than &quot;full&quot;. Updated &quot;Acknowledgements&quot; section.</t>
          <t hangText="05:">Moved &quot;Approaches to Partial Response Implementation&quot; section to the appendix.</t>
          <t hangText="06:">Clarified the use of self links in &quot;Basic Field Sets&quot; section. Added APNIC to the implementations of the &quot;Implementation Status&quot; section.</t>
          <t hangText="07:">Changed &quot;only a subset is returned&quot; to &quot;only a subset of fields in each result object is returned&quot; in the &quot;Introduction&quot; section. Moved the &quot;RDAP Conformance&quot; section up in the document. Updated the &quot;Acknowledgements&quot; section.</t>
          <t hangText="08:">Changed the rdapConformance tag &quot;subsetting_level_0&quot; to &quot;subsetting&quot;. Moved <xref target="RFC7942"/> to the &quot;Normative References&quot;.</t>
        </list>
      </t>
    </section>
  </back>
</rfc>
