Network Working Group | J. Gould |
Internet-Draft | VeriSign, Inc. |
Intended status: Standards Track | February 8, 2017 |
Expires: August 12, 2017 |
Data Set File Format
draft-gould-regext-dataset-00
This document defines a Data Set File (DSF) format that can be used to define and pass bulk data between a client and a server. This format is extensible to pass any set of simple data types in a set of records contained in the body of the file. The file format also supports storing the result of processing the data set that MAY be generated by the server and returned to the client. The file format consists of an XML definition header and a Comma-Separated Values (CSV) data section delimited by "-----BEGIN DATA SET-----" and "-----END DATA SET-----" lines. The XML definition header defines the format of the CSV data section, contains additional meta-data, and optionally includes a digital signature to identify the source and ensure that the data has not been tampered with between the parties (source, client, and server). The interface (manual or automated) that is used to submit the file and receive the result file is not defined within this document.
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at http://datatracker.ietf.org/drafts/current/.
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."
This Internet-Draft will expire on August 12, 2017.
Copyright (c) 2017 IETF Trust and the persons identified as the document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (http://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License.
This document defines a Data Set File (DSF) format that can be used to define and pass bulk data between a client and a server. The client and server MAY leverage a provisioning protocol like EPP, as defined in [RFC5730], to provision individual objects, but the provisioning protocol MAY NOT handle all provisioning use cases. This document defines a format for bulk provisioning requests that can be generated by authorized third parties, can be generated by clients that choose not to leverage the provisioning protocol, and can be supported by servers to process bulk requests in a controlled manner that throttles the processing against the provisioning database. Bulk requests can include court orders, out-of-band client requests to fix data, the backfill of data like contact or verification code data, and a large set of ad-hoc needs.
This format is extensible to pass any set of simple data types in a set of records contained in the body of the file. The file format also supports storing the result of processing the data set that MAY be generated by the server and returned to the client. The file format consists of an XML definition header and a Comma-Separated Values (CSV) data section delimited by "-----BEGIN DATA SET-----" and "-----END DATA SET-----" lines. The XML definition header defines the format of the CSV data section, contains additional meta-data, and optionally includes a digital signature to identify the source and ensure that the data has not been tampered with between the parties (source, client, and server) using XML Signature [W3C.CR-xmldsig-core2-20120124]. All XML Signature [W3C.CR-xmldsig-core2-20120124] data is "base64" encoded, in conformance with [RFC2045], by default to mitigate any validation errors due to whitespace formatting. The interface (manual or automated) that is used to submit the file and receive the result file is not defined within this document and must be documented independently. Please see Section 9 for a description of the issues associated with transport security.
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 [RFC2119].
XML is case sensitive. Unless stated otherwise, XML specifications and examples provided in this document MUST be interpreted in the character case presented in order to develop a conforming implementation.
The following XML abbreviations are used:
Implementations MUST NOT depend on the XML namespace prefix used in this document and instead MUST employ a proper namespace-aware XML parser and serializer to interpret and output the XML.
This document includes a general set of attributes and terms that are described here.
Numerous fields indicate "dates", such as the creation date of the DSF. These fields SHALL contain timestamps indicating the date and time in UTC as specified in [RFC3339], with no offset from the zero meridian.
The checksum of the body of the file, as defined by the body rule of the Data Set File (DSF) ABNF [dsfFormat], MUST use CRC32, that is the algorithm used in the ISO 13239 standard [iso13239] and in section 8.1.1.6.2 of ITU-T recommendation V.42 [itu-t-V.42].
There can be many different Data Set File (DSF) types supported based on the objects, operations, and the specific scenarios. To make it easier to negotiate the client's intent of the DSF with the server's set of supported DSF files, the DSF supports the definition of a type and an optional sub-type. The supported list of types and sub-types is up to server policy. The server SHOULD provide the possible set of supported DSF type and sub-type values to the parties generating the DSF. The mechanism for providing the supported DSF type and sub-type values is not defined in this document but MAY require registration within an IANA registry.
The <dataSet:type> element formally defines the DSF type, which indicates the expected set of fields defined under the <dataSet:fields> element and the expected operation to be taken. An OPTIONAL "subType" attribute defines the sub-type that is used to further refine the purpose of the DSF.
It is recommended that the server follows a consistent naming scheme for the <dataSet:type> values. One option is to delimit the value with a '.' and to include the object ("domain", "host", "contact, "verificationCode", etc.), the operation ("create", "renew, "transfer", "delete", "update", etc.), and the scoped name of the DSF. For example, to support the bulk update of encoded signed verification codes, the <dataSet:type> value can be set to "verificationCode.update.encodedSignedCode". To further sub-divide the "verificationCode.update.encodedSignedCode" type by locality, the "subType" attribute can be set to the locality name. For example, the "china" verification profile supports two verification codes of type "domain" and "real-name", so the "verificationCode.update.encodedSignedCode" DSF type can include "china" for the "subType" attribute, as in <dataSet:type subType="china">verificationCode.update.encodedSignedCode</dataSet:type>.
The <dataSet:fields> element, an element in the header [headerFormat], contains an ordered list of CSV fields used in the body of the file delimited by the character defined by the OPTIONAL "sep" attribute, with a default value of ",". A field child element substitutes for the <dataSet:field> abstract element. Each element defines the format of the CSV field contained in the body. The <dataSet:field> elements support the "type" attribute that defines the XML schema simple type of the field element.
The abstract <dataSet:field> element does not directly define any attributes, but there are a couple attributes that a data set processor SHOULD support including:
New field types can be defined that reside in the CSV records. To make the definition of new field types easier, a set of base field types are defined in the dataSet-1.0 XML schema that include:
Example definition of the <dataSet:fName> field element that extends the "dataSet:fieldPrimaryKeyType" base field type with the XML type dataSet:labelType and with the required "class" attribute:
<element name="fName" type="dataSet:fNameType" substitutionGroup="dataSet:field"/> <complexType name="fNameType"> <complexContent> <extension base="dataSet:fieldPrimaryKeyType"> <sequence/> <attribute name="type" type="token" default="dataSet\:labelType"/> <attribute name="class" type="token" use="required"/> </extension> </complexContent> </complexType>
The dataSet-1.0 XML schema predefines a set of field elements that can be used as child elements of the <dataSet:fields> element of the header to define the CSV record fields. The dataSet-1.0 field elements with the XML schema type value and the base type include:
Example <dataSet:fields> definition for a result file generated by a server that includes a domain name with a result code, with an OPTIONAL result message, and an OPTIONAL result reason:
<dataSet:fields> <dataSet:fName class="domain"/> <dataSet:fResultCode/> <dataSet:fResultMsg/> <dataSet:fResultReason/> </dataSet:fields>
New field elements MAY be defined in separate XML schemas and referenced as child elements of the <dataSet:fields> element. The convention is to prefix all field elements with a lowercase "f", as in <dataSet:fName> for the object name or <dataSet:fResultCode> for the result code. The following are the steps to define a new field element:
Example definition of the <dataSet:fResultCode> field element that is required to be non-empty and with the CSV field type "dataSet:resultCodeType":
<element name="fResultCode" type="dataSet:fResultCodeType" substitutionGroup="dataSet:field"/> <complexType name="fResultCodeType"> <complexContent> <extension base="dataSet:fieldRequiredType"> <sequence/> <attribute name="type" type="token" default="dataSet\:resultCodeType"/> </extension> </complexContent> </complexType>
Example definition of the <dataSet:fResultMsg> field element that may be empty (optional), with the CSV field type "normalizedString", and with the additional optional "lang" attribute:
<element name="fResultMsg" type="dataSet:fResultMsgType" substitutionGroup="dataSet:field"/> <complexType name="fResultMsgType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="normalizedString"/> <attribute name="lang" type="language" default="en"/> </extension> </complexContent> </complexType>
A Data Set File (DSF) MAY include data that targets multiple independent backend services, but the object alone cannot be used to determine the appropropriate backend service. An example is creating a Contact Object [contactObject] in the .EXAMPLE1 domain registry service and creating another Contact Object [contactObject] in the .EXAMPLE2 domain registry service within a single DSF, where .EXAMPLE1 and .EXAMPLE2 are independent domain registry services. The Data Set File (DSF) processor MAY coordinate with the backend services to process each of the DSF records, but it is dependent on the client to specify the target backend service with each record.
The Data Set File (DSF) field element used for routing a record to a specific backend service includes:
Routing is most applicable to objects like a Contact Object [contactObject] and a Host Object [hostObject], where the keys (<dsfContact:fId> for the Contact Object and <dsfHost:fName> for the Host Object) MAY NOT be enough to uniqually identify a target domain registry service. An example of using the <dsfRouting:fSubProduct> field for routing is provided with the "contact.create.routing" DSF in Section 4.3.
The Data Set File (DSF) format supports multiple types of requests and response files. All of these types of files support a general file format that includes a header that provides meta-data about the data including the what, who, when, and optionally the digital signature of the information, and the body containing the data. The Data Set File (DSF) syntax is specified using Augmented Backus-Naur Form (ABNF) grammar [RFC5234] as follows:
Data Set File (DSF) ABNF
file = header body header = dataSet-1.0 LF dataSet-1.0 = 1*(1*VCHAR LF) ; compliant to dataSet-1.0 body = start data end start = "-----BEGIN DATA SET-----" LF data = 0*(1*VCHAR LF) ; CSV compliant <dataSet:fields> end = "-----END DATA SET-----" *1LF
The header of the Data Set File (DSF) is an XML document that complies with the dataSet-1.0 XML schema. The purpose of the header is to provide the meta-data about the data contained in the body. The <dataSet:definition> element is the root XML element of the header and contains the following child element:
The <dataSet:defData> element contains the meta-data of the body of the file that is not digitally signed. The <dataSet:defData> element contains the following child elements:
Example <dataSet:defData> element for setting verification codes on a domain name:
<dataSet:defData> <dataSet:fields> <dataSet:type subType="locality"> verificationCode.update.encodedSignedCode </dataSet:type> <dsfDomain:fName/> <dsfVerificationCode:fEncodedSignedCode type="domain"/> <dsfVerificationCode:fEncodedSignedCode type="real-name"/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:crDate>2016-04-03T22:00:00.0Z</dataSet:crDate> </dataSet:defData>
The <dataSet:encodedSignedDefData> element contains the encoded form of the digitally signed <dataSet:signedDefData> element, described in Section 3.1.2.1, with the encoding defined by the "encoding" attribute with the default "encoding" value of "base64". The "base64" encoded text of the <dataSet:signedDefData> element MUST conform to [RFC2045].
Example <dataSet:encodedSignedDefData> element, where "..." represents continuation of data for brevity:
<dataSet:encodedSignedDefData encoding="base64"> ICAgICAgPHZlcmlmaWNhdGlvbkNvZGU6c2lnbmVkQ29kZQogICAgICAgIHhtbG5z ... b25Db2RlOnNpZ25lZENvZGU+Cg== </dataSet:encodedSignedDefData>
The Signed Definition Data, represented by the <dataSet:signedDefData> element, is a signed extension of the <dataSet:defData> element, defined in Section 3.1.1. The <dataSet:signedDefData> provides the meta-data about the body of the file, that is a fragment of XML that is digitally signed using XML Signature [W3C.CR-xmldsig-core2-20120124]. The <dataSet:signedDefData> element includes a required "id" attribute of type XSD ID for use with the IDREF URI from the Signature element. Setting the "id" attribute value to "signedData" is recommended. The certificate of the issuer MUST be included with the Signature so it can be chained with the issuer's certificate by the validating client. A checksum, as defined by the Section 2.2, of the body of the file, as defined by the body rule of the Data Set File (DSF) ABNF, is included in the digitally signed data to ensure that it's covered by the Signature. The <dataSet:signedDefData> element contains the following child elements:
Example <dataSet:signedDefData> element, where "..." represents continuation of data for brevity:
<dataSet:signedDefData xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dsfDomain= "urn:ietf:params:xml:ns:dsfDomain-1.0" xmlns:dsfVerificationCode= "urn:ietf:params:xml:ns:dsfVerificationCode-1.0" id="signedData"> <dataSet:type subType="locality"> verificationCode.update.encodedSignedCode </dataSet:type> <dataSet:fields> <dsfDomain:fName/> <dsfVerificationCode:fCode type="domain"/> <dsfVerificationCode:fCode type="real-name"/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:crDate>2016-04-03T22:00:00.0Z</dataSet:crDate> <dataSet:cksum>6F2B988F</dataSet:cksum> <Signature xmlns="http://www.w3.org/2000/09/xmldsig#"> <SignedInfo> <CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/> <SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256"/> <Reference URI="#signedData"> <Transforms> <Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature"/> </Transforms> <DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"/> <DigestValue>wgyW3nZPoEfpptlhRILKnOQnbdtU6ArM7ShrAfHgDFg= </DigestValue> </Reference> </SignedInfo> <SignatureValue> jMu4PfyQGiJBF0GWSEPFCJjmywCEqR2h4LD+ge6XQ+JnmKFFCuCZS/3SLKAx0L1w ... ipJsXNa6osTUw1CzA7jfwA== </SignatureValue> <KeyInfo> <X509Data> <X509Certificate> MIIESTCCAzGgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBiMQswCQYDVQQGEwJVUzEL ... AdXitTWFipaIGea9lEGFM0L9+Bg7XzNn4nVLXokyEB3bgS4scG6QznX23FGk </X509Certificate> </X509Data> </KeyInfo> </Signature> </dataSet:signedDefData>
The <dataSet:resultData> element contains the high level result data with the processing of a request Data Set File (DSF) by the server. the "code" attribute describes the success or failure of the processing using the code values defined in Section 5. The <dataSet:resultData> element contains the following child elements:
Example successful <dataSet:resultData> element:
<dataSet:resultData code="1000"> <dataSet:type subType="locality"> verificationCode.update.encodedSignedCode </dataSet:type> <dataSet:fields> <dsfDomain:fName/> <dataSet:fResultCode/> <dataSet:fResultMsg/> <dataSet:fResultReason/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:svTRID>54322-XYZ</dataSet:svTRID> <dataSet:msg>Code Set processed successfully.</dataSet:msg> <dataSet:records> <dataSet:total>2</dataSet:total> <dataSet:success>2</dataSet:success> <dataSet:failed>0</dataSet:failed> </dataSet:records> </dataSet:resultData>
Example <dataSet:resultData> element with some failures:
<dataSet:resultData code="1001"> <dataSet:type subType="locality"> verificationCode.update.encodedSignedCode </dataSet:type> <dataSet:fields> <dsfDomain:fName/> <dataSet:fResultCode/> <dataSet:fResultMsg/> <dataSet:fResultReason/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:svTRID>54322-XYZ</dataSet:svTRID> <dataSet:msg>Success with failures</dataSet:msg> <dataSet:records> <dataSet:total>4</dataSet:total> <dataSet:success>1</dataSet:success> <dataSet:failed>3</dataSet:failed> </dataSet:records> </dataSet:resultData>
Example failed <dataSet:resultData> element based on malformed request file:
<dataSet:resultData code="2000"> <dataSet:svTRID>54322-XYZ</dataSet:svTRID> <dataSet:msg>File syntax error</dataSet:msg> <dataSet:reason lang="en">Malformed request file </dataSet:reason> </dataSet:resultData>
Example failed <dataSet:resultData> element based on header syntax error:
<dataSet:resultData code="2001"> <dataSet:svTRID>54322-XYZ</dataSet:svTRID> <dataSet:msg>Header syntax error</dataSet:msg> <dataSet:reason lang="en">Header XML syntax error </dataSet:reason> </dataSet:resultData>
Example failed <dataSet:resultData> element based on body syntax error:
<dataSet:resultData code="2002"> <dataSet:type subType="locality"> verificationCode.update.encodedSignedCode </dataSet:type> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:svTRID>54322-XYZ</dataSet:svTRID> <dataSet:msg>Body syntax error</dataSet:msg> <dataSet:reason lang="en">Invalid with fields definition </dataSet:reason> </dataSet:resultData>
The body of the Data Set File (DSF) is a set of Comma-Separated Values (CSV) data that includes a leading "-----BEGIN CODE SET-----" line and a trailing "-----END CODE SET-----" line. The format of the CSV data is defined by the <dataSet:fields> element in the header [headerFormat], that includes the delimiter and the ordered set of fields [fields] with their XML simple type and descriptor attributes like "isRequired", "isPrimaryKey", "class", and "codeType".
Example body for a result file generated by a server that includes a success and a set of failed records with a mix of messages and reasons.:
-----BEGIN DATA SET----- domain1.example,1000,Success, domain2.example,2303,Object does not exist, domain3.example,2201,Authorization error, domain4.example,2302,Object exists,domain code already -----END DATA SET-----
This section describes the base objects supported by this specification:
The domain name object is based on the EPP domain name mapping specified in [RFC5731].
The Data Set File (DSF) field elements specific to the domain name object include:
The following are example DSF files using the domain object fields. The different forms of domain object DSF files is up to server policy.
Example of a "domain.update.replaceClientStatuses" DSF that will set the client statuses of a domain name to those specified in the DSF record. The client statuses set will be replaced by the set of client statuses specified. Empty statuses will result in the removal of those statuses if previously set. Non-empty statuses will be added if not previously set. Non-empty statuses will result in no change if previously set. All five client statuses defined in [RFC5731] are defined in the DSF in fixed order.
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <dataSet:definition xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dsfDomain= "urn:ietf:params:xml:ns:dsfDomain-1.0"> <dataSet:defData> <dataSet:type> domain.update.replaceClientStatuses </dataSet:type> <dataSet:fields> <dsfDomain:fName/> <!-- clientDeleteProhibited --> <dsfDomain:fStatus/> <!-- clientHold --> <dsfDomain:fStatus/> <!-- clientRenewProhibited --> <dsfDomain:fStatus/> <!-- clientTransferProhibited --> <dsfDomain:fStatus/> <!-- clientUpdateProhibited --> <dsfDomain:fStatus/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:crDate>2016-04-03T22:00:00.0Z</dataSet:crDate> </dataSet:defData> </dataSet:definition> -----BEGIN DATA SET----- domain1.example,clientDeleteProhibited,,,,clientUpdateProhibited domain2.example,,clientHold,,, domain3.example,,,clientRenewProhibited,clientTransferProhibited, domain4.example,,,,, -----END DATA SET-----
Example of a "domain.update.addRemoveStatus" DSF that will add a status and remove a status for each domain name. Any status can be empty to indicate no action for that domain name.
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <dataSet:definition xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dsfDomain= "urn:ietf:params:xml:ns:dsfDomain-1.0"> <dataSet:defData> <dataSet:type> domain.update.addRemoveNs </dataSet:type> <dataSet:fields> <dsfDomain:fName/> <dsfDomain:fNs op="add"/> <dsfDomain:fNs op="remove"/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:crDate>2016-04-03T22:00:00.0Z</dataSet:crDate> </dataSet:defData> </dataSet:definition> -----BEGIN DATA SET----- domain1.example,ns1.domain1.example,n2.domain1.example domain2.example,ns1.domain1.example, domain3.example,,ns2.domain1.example -----END DATA SET-----
Example of a "domain.update.replaceNs" DSF that will set the name servers of a domain name to those specified in the DSF record. The server supports setting up to 13 name servers to a domain name, so there are 13 <dsfDomain:fNs> defined. All existing name servers set will be replaced with the name servers specified.
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <dataSet:definition xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dsfDomain= "urn:ietf:params:xml:ns:dsfDomain-1.0"> <dataSet:defData> <dataSet:type> domain.update.replaceNs </dataSet:type> <dataSet:fields> <dsfDomain:fName/> <dsfDomain:fNs/> <dsfDomain:fNs/> <dsfDomain:fNs/> <dsfDomain:fNs/> <dsfDomain:fNs/> <dsfDomain:fNs/> <dsfDomain:fNs/> <dsfDomain:fNs/> <dsfDomain:fNs/> <dsfDomain:fNs/> <dsfDomain:fNs/> <dsfDomain:fNs/> <dsfDomain:fNs/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:crDate>2016-04-03T22:00:00.0Z</dataSet:crDate> </dataSet:defData> </dataSet:definition> -----BEGIN DATA SET----- domain1.example,ns1.domain1.example,n2.domain1.example,,,,,,,,,,, domain2.example,ns1.domain1.example,,,,,,,,,,,, domain3.example,,,,,,,,,,,,, -----END DATA SET-----
Example of a "domain.update.addRemoveNs" DSF that will add a name server and remove a name server for each domain name. Any name server can be empty to indicate no action for that domain name.
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <dataSet:definition xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dsfDomain= "urn:ietf:params:xml:ns:dsfDomain-1.0"> <dataSet:defData> <dataSet:type> domain.update.addRemoveNs </dataSet:type> <dataSet:fields> <dsfDomain:fName/> <dsfDomain:fNs op="add"/> <dsfDomain:fNs op="remove"/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:crDate>2016-04-03T22:00:00.0Z</dataSet:crDate> </dataSet:defData> </dataSet:definition> -----BEGIN DATA SET----- domain1.example,ns1.domain1.example,n2.domain1.example domain2.example,ns1.domain1.example, domain3.example,,ns2.domain1.example -----END DATA SET-----
Example of a "domain.update.contacts" DSF that supports updating the contacts (registrant, admin, tech, and billing) for each domain name. All four contacts fields are set as required using the "isRequired" attribute and any existing contacts set for each domain name are replaced.
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <dataSet:definition xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dsfDomain= "urn:ietf:params:xml:ns:dsfDomain-1.0"> <dataSet:defData> <dataSet:type> domain.update.contacts </dataSet:type> <dataSet:fields> <dsfDomain:fName/> <dsfDomain:fContact role="registrant" isRequired="true"/> <dsfDomain:fContact role="admin" isRequired="true"/> <dsfDomain:fContact role="tech" isRequired="true"/> <dsfDomain:fContact role="billing" isRequired="false"/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:crDate>2016-04-03T22:00:00.0Z</dataSet:crDate> </dataSet:defData> </dataSet:definition> -----BEGIN DATA SET----- domain1.example,jd1234,sh813,sh813,sh813 domain2.example,jd1234,sh813,sh813, -----END DATA SET-----
Example of a "domain.create.standard" DSF that supports creating each domain name record with a standard set of fields / attributes for a thick domain name.
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <dataSet:definition xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dsfDomain= "urn:ietf:params:xml:ns:dsfDomain-1.0"> <dataSet:defData> <dataSet:type> domain.create.standard </dataSet:type> <dataSet:fields> <dsfDomain:fName/> <dsfDomain:fPeriod/> <dsfDomain:fNs/> <dsfDomain:fNs/> <dsfDomain:fContact role="registrant"/> <dsfDomain:fContact role="admin"/> <dsfDomain:fContact role="tech"/> <dsfDomain:fContact role="billing"/> <dataSet:fAuthInfo/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:crDate>2016-04-03T22:00:00.0Z</dataSet:crDate> </dataSet:defData> </dataSet:definition> -----BEGIN DATA SET----- domain1.example,1,ns1.dom.example,,jd1234,sh813,sh813,sh813,2fooBAR domain2.example,1,,,jd1234,sh813,sh813,sh813,2fooBAR -----END DATA SET-----
The host object is based on the EPP host mapping specified in [RFC5732].
The Data Set File (DSF) field elements specific to the host object include:
The following are example DSF files using the host object fields. The different forms of host object DSF files is up to server policy.
Example of a "host.update.replaceClientStatuses" DSF that will set the client statuses of a host to those specified in the DSF record. The client statuses set will be replaced by the set of client statuses specified. Empty statuses will result in the removal of those statuses if previously set. Non-empty statuses will be added if not previously set. Non-empty statuses will result in no change if previously set. All two client statuses defined in [RFC5732] are defined in the DSF in fixed order.
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <dataSet:definition xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dsfHost= "urn:ietf:params:xml:ns:dsfHost-1.0"> <dataSet:defData> <dataSet:type> host.update.replaceClientStatuses </dataSet:type> <dataSet:fields> <dsfHost:fName/> <!-- clientDeleteProhibited --> <dsfHost:fStatus/> <!-- clientUpdateProhibited --> <dsfHost:fStatus/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:crDate>2016-04-03T22:00:00.0Z</dataSet:crDate> </dataSet:defData> </dataSet:definition> -----BEGIN DATA SET----- ns1.domain.example,clientDeleteProhibited,clientUpdateProhibited ns2.domain.example,,clientUpdateProhibited ns3.domain.example,clientDeleteProhibited, ns4.domain.example,, -----END DATA SET-----
Example of a "host.update.addRemoveStatus" DSF that will add a status and remove a status for each host. Any status can be empty to indicate no action for that host.
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <dataSet:definition xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dsfHost= "urn:ietf:params:xml:ns:dsfHost-1.0"> <dataSet:defData> <dataSet:type> host.update.addRemoveClientStatuses </dataSet:type> <dataSet:fields> <dsfHost:fName/> <dsfHost:fStatus op="add"/> <dsfHost:fStatus op="remove"/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:crDate>2016-04-03T22:00:00.0Z</dataSet:crDate> </dataSet:defData> </dataSet:definition> -----BEGIN DATA SET----- ns1.domain.example,clientDeleteProhibited,clientUpdateProhibited ns2.domain.example,,clientUpdateProhibited ns3.domain.example,clientUpdateProhibited, -----END DATA SET-----
Example of a "host.update.replaceAddr" DSF that will set the addresses of a host to those specified in the DSF record. The server supports setting up to 6 addresses to a host, so there are 6 <dsfHost:fAddrVersion> and <dsfHost:fAddr> field pairs defined. All existing addresses set will be replaced with the addresses specified.
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <dataSet:definition xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dsfHost= "urn:ietf:params:xml:ns:dsfHost-1.0"> <dataSet:defData> <dataSet:type> host.update.replaceAddr </dataSet:type> <dataSet:fields> <dsfHost:fName/> <dsfHost:fAddrVersion/> <dsfHost:fAddr/> <dsfHost:fAddrVersion/> <dsfHost:fAddr/> <dsfHost:fAddrVersion/> <dsfHost:fAddr/> <dsfHost:fAddrVersion/> <dsfHost:fAddr/> <dsfHost:fAddrVersion/> <dsfHost:fAddr/> <dsfHost:fAddrVersion/> <dsfHost:fAddr/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:crDate>2016-04-03T22:00:00.0Z</dataSet:crDate> </dataSet:defData> </dataSet:definition> -----BEGIN DATA SET----- ns1.domain.example,v4,192.0.2.2,v4,192.0.2.29,,,,,,,, ns2.domain.example,v6,1080:0:0:0:8:800:200C:417A,,,,,,,,,, ns3.domain.example,,,,,,,,,,,, -----END DATA SET-----
Example of a "host.update.addRemoveAddr" DSF that will add an address and remove an address for each host. Any address can be empty to indicate no action for that host. The <dsfHost:fAddrVersion> and <dsfHost:fAddr> field pairs are provided with matching list operations.
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <dataSet:definition xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dsfHost= "urn:ietf:params:xml:ns:dsfHost-1.0"> <dataSet:defData> <dataSet:type> host.update.addRemoveAddr </dataSet:type> <dataSet:fields> <dsfHost:fName/> <dsfHost:fAddrVersion op="add"/> <dsfHost:fAddr op="add"/> <dsfHost:fAddrVersion op="remove"/> <dsfHost:fAddr op="remove"/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:crDate>2016-04-03T22:00:00.0Z</dataSet:crDate> </dataSet:defData> </dataSet:definition> -----BEGIN DATA SET----- ns1.domain.example,v4,192.0.2.2,v4,192.0.2.29 ns2.domain.example,v6,1080:0:0:0:8:800:200C:417A,, ns3.domain.example,,v4,192.0.2.29 -----END DATA SET-----
Example of a "host.create.standard" DSF that supports creating each host record with a standard set of fields / attributes for a host. There is an example of creating an internal host (ns1.domain.example and ns2.domain.example) with up to two addresses and an external host (ns1.domain.external) without addresses.
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <dataSet:definition xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dsfHost= "urn:ietf:params:xml:ns:dsfHost-1.0"> <dataSet:defData> <dataSet:type> host.create.standard </dataSet:type> <dataSet:fields> <dsfHost:fName/> <dsfHost:fAddrVersion/> <dsfHost:fAddr/> <dsfHost:fAddrVersion/> <dsfHost:fAddr/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:crDate>2016-04-03T22:00:00.0Z</dataSet:crDate> </dataSet:defData> </dataSet:definition> -----BEGIN DATA SET----- ns1.domain.example,v4,192.0.2.2,v4,192.0.2.29 ns2.domain.example,v6,1080:0:0:0:8:800:200C:417A, ns1.domain.external,,,, -----END DATA SET-----
The contact object is based on the EPP host mapping specified in [RFC5733].
Some elements MAY be provided in either internationalized form ("int") or provided in localized form ("loc"). Those elements use a field value or "isLoc" attribute to specify the form used. If an "isLoc" attribute is used, a value of "true" indicates the use of the localized form and a value of "false" indicates the use of the internationalized form. This MAY override the form specified for a parent element. A value of "int" is used to indicate the internationalized form and a value of "loc" is used to indicate the localized form. When the internalized form ("int") is provided, the field value MUST be represented in a subset of UTF-8 that can be represented in the 7-bit US-ASCII character set. When the localized form ("loc") is provided, the field value MAY be represented in unrestricted UTF-8. Some of the contact field elements specify the internationalized form with the isLoc="false" attribute.
The Data Set File (DSF) field elements specific to the contact object include:
The following are example DSF files using the contact object fields. The different forms of contact object DSF files is up to server policy.
Example of a "contact.update.replaceClientStatuses" DSF that will set the client statuses of a contact to those specified in the DSF record. The client statuses set will be replaced by the set of client statuses specified. Empty statuses will result in the removal of those statuses if previously set. Non-empty statuses will be added if not previously set. Non-empty statuses will result in no change if previously set. All three client statuses defined in [RFC5733] are defined in the DSF in fixed order.
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <dataSet:definition xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dsfContact= "urn:ietf:params:xml:ns:dsfContact-1.0"> <dataSet:defData> <dataSet:type> contact.update.replaceClientStatuses </dataSet:type> <dataSet:fields> <dsfContact:fId/> <!-- clientDeleteProhibited --> <dsfContact:fStatus/> <!-- clientTransferProhibited --> <dsfContact:fStatus/> <!-- clientUpdateProhibited --> <dsfContact:fStatus/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:crDate>2016-04-03T22:00:00.0Z</dataSet:crDate> </dataSet:defData> </dataSet:definition> -----BEGIN DATA SET----- sh1111,clientDeleteProhibited,,clientUpdateProhibited sh2222,,clientUpdateProhibited sh3333,,clientTransferProhibited, sh4444,,, -----END DATA SET-----
Example of a "contact.update.addRemoveStatus" DSF that will add a status and remove a status for each contact. Any status can be empty to indicate no action for that contact.
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <dataSet:definition xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dsfContact= "urn:ietf:params:xml:ns:dsfContact-1.0"> <dataSet:defData> <dataSet:type> contact.update.addRemoveClientStatuses </dataSet:type> <dataSet:fields> <dsfContact:fId/> <dsfContact:fStatus op="add"/> <dsfContact:fStatus op="remove"/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:crDate>2016-04-03T22:00:00.0Z</dataSet:crDate> </dataSet:defData> </dataSet:definition> -----BEGIN DATA SET----- sh1111,clientDeleteProhibited,clientUpdateProhibited sh2222,,clientUpdateProhibited sh3333,clientUpdateProhibited, sh4444,clientTransferProhibited, -----END DATA SET-----
Example of a "contact.create.standard" DSF that supports creating each contact record with a standard set of fields / attributes for a contact. A "|" character is used as a separator to minimize conflicting with the contact data. This is an example of creating two contacts, where indented data set lines are a continuation from the prior line.
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <dataSet:definition xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dsfContact= "urn:ietf:params:xml:ns:dsfContact-1.0"> <dataSet:defData> <dataSet:type> contact.create.standard </dataSet:type> <dataSet:fields sep="|"> <dsfContact:fId/> <dsfContact:fPostalType/> <dsfContact:fName/> <dsfContact:fOrg/> <dsfContact:fStreet index="0"/> <dsfContact:fStreet index="1"/> <dsfContact:fStreet index="2"/> <dsfContact:fCity/> <dsfContact:fSp/> <dsfContact:fPc/> <dsfContact:fCc/> <dsfContact:fVoice/> <dsfContact:fVoiceExt/> <dsfContact:fFax/> <dsfContact:fFaxExt/> <dsfContact:fEmail/> <dataSet:fAuthInfo/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:crDate>2016-04-03T22:00:00.0Z</dataSet:crDate> </dataSet:defData> </dataSet:definition> -----BEGIN DATA SET----- sh1111|int|John Doe|Example Inc.| 123 Example Dr.|||Dulles|VA|20166-6503|US| +1.7035555555|1234|+1.7035555556|| johndoe@example.com|2fooBAR sh2222|int|Jane Doe|Example Inc.| 123 Example Dr.|Suite 2222||Dulles|VA|20166-6503|US| +1.7035555555|||| janedoe@example.com|2fooBAR -----END DATA SET-----
Example of a "contact.create.routing" DSF that extends the "contact.create.standard" DSF with the <dsfContact:fSubProduct> field [routing] to route the create to the appropriate Top Level Domain (TLD) or group of TLDs. A "|" character is used as a separator to minimize conflicting with the contact data. This is an example of creating two contacts, where indented data set lines are a continuation from the prior line.
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <dataSet:definition xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dsfContact= "urn:ietf:params:xml:ns:dsfContact-1.0" xmlns:dsfRouting= "urn:ietf:params:xml:ns:dsfRouting-1.0"> <dataSet:defData> <dataSet:type> contact.create.routing </dataSet:type> <dataSet:fields sep="|"> <dsfRouting:fSubProduct/> <dsfContact:fId/> <dsfContact:fPostalType/> <dsfContact:fName/> <dsfContact:fOrg/> <dsfContact:fStreet index="0"/> <dsfContact:fStreet index="1"/> <dsfContact:fStreet index="2"/> <dsfContact:fCity/> <dsfContact:fSp/> <dsfContact:fPc/> <dsfContact:fCc/> <dsfContact:fVoice/> <dsfContact:fVoiceExt/> <dsfContact:fFax/> <dsfContact:fFaxExt/> <dsfContact:fEmail/> <dataSet:fAuthInfo/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:crDate>2016-04-03T22:00:00.0Z</dataSet:crDate> </dataSet:defData> </dataSet:definition> -----BEGIN DATA SET----- EXAMPLE|sh1111|int|John Doe|Example Inc.| 123 Example Dr.|||Dulles|VA|20166-6503|US| +1.7035555555|1234|+1.7035555556|| johndoe@example.com|2fooBAR EXAMPLE|sh2222|int|Jane Doe|Example Inc.| 123 Example Dr.|Suite 2222||Dulles|VA|20166-6503|US| +1.7035555555|||| janedoe@example.com|2fooBAR -----END DATA SET-----
The Verification Code Object is defined in the Verification Code Extension for the Extensible Provisioning Protocol [I-D.gould-eppext-verificationcode]. This section defines the Verification Code specific Data Set File (DSF) field elements and sample DSF files used to set verification codes with a bulk update.
The Verification Service Provider (VSP) is a certified party to verify that data is in compliance with the policies of a locality. A locality MAY require the client to have data verified in accordance with local regulations or laws utilizing data sources not available to the server. The VSP has access to the local data sources and is authorized to verify the data. Examples include verifying that the domain name is not prohibited and verifying that the domain name registrant is a valid individual, organization, or business in the locality. The data verified, and the objects and operations that require the verification code to be passed to the server is up to the policies of the locality. The verification code represents a marker that the verification was completed. The data verified by the VSP MUST be stored by the VSP along with the generated verification codes in order to address any compliance issues. The signer certificate and the digital signature of the verification code MUST be verified by the server.
The Data Set File (DSF) field elements specific to the Verification Code Object include:
The Data Set File (DSF) used for setting of the verification codes MAY include fields from other objects and the fields specific to the Verification Code Object. There are two scenarios in passing the verification codes based on who generates the DSF file, which includes:
The following examples reference verification codes supported by the China Locality, which includes the Domain Name Verification Code (DNVC) and the Real Name Verification Code (RNVC). Both China Locality verification codes are set on a domain name with the verification code type of "domain" used for the DNVC and the verification code type of "real-name" used for the RNVC. Other localities MAY include a different set of verification codes.
Example VSP Generated DSF that includes a domain name primary key field, a "domain" code token value field, and a "real-name" token value field. The "base64" value includes "..." representing continuation of data for brevity:
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <dataSet:definition xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0"> <dataSet:encodedSignedDefData encoding="base64"> ICAgICAgPHZlcmlmaWNhdGlvbkNvZGU6c2lnbmVkQ29kZQogICAgICAgIHhtbG5z ... b25Db2RlOnNpZ25lZENvZGU+Cg== </dataSet:encodedSignedDefData> </dataSet:definition> -----BEGIN DATA SET----- domain1.example,0-abc111,0-abc222 domain2.example,0-abc333,0-abc444 domain3.example,0-abc555, domain3.example,,0-abc666 -----END DATA SET-----
Example Client Generated Data Set File (DSF) that includes a domain name primary key field, a "domain" encoded signed code field, and a "real-name" encoded signed code field. The "base64" values include no line breaks and include "..." representing continuation of data for brevity:
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <dataSet:definition xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dsfDomain= "urn:ietf:params:xml:ns:dsfDomain-1.0" xmlns:dsfVerificationCode= "urn:ietf:params:xml:ns:dsfVerificationCode-1.0" > <dataSet:defData> <dataSet:type subType="china"> verificationCode.update.encodedSignedCode </dataSet:type> <dataSet:fields> <dsfDomain:fName/> <dsfVerificationCode:fEncodedSignedCode type="domain"/> <dsfVerificationCode:fEncodedSignedCode type="real-name"/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:crDate>2016-04-03T22:00:00.0Z</dataSet:crDate> </dataSet:defData> </dataSet:definition> -----BEGIN DATA SET----- domain1.example,ICAg...GlvbkN,CAgICA...uOmlldG domain2.example,YW1zOb2R...GlvbkNvZGU6c2ln, domain3.example,,CAgICAnZ...htbDpZmljYXMCIKI -----END DATA SET-----
The result codes are based on and not equal to the reply codes defined in the EPP result codes of [RFC5730]. Four decimal digits are used to describe the success or failure of the processing of the Data Set File (DSF) or the processing of an individual record. Each digit of the result code has specific significance.
The first digit denotes success or failure. The second digit denotes the result category, such as request syntax or security. The third and fourth digits provide explicit response detail within each result category.
There are two values for the first digit of the result code:
The second digit groups responses into one of five specific categories:
Successful result codes:
Error result codes:
The error result codes include some overlap that will require the server to decide which one to return based on server policy. For example, a "Header syntax error", represented by the error result code 2001, may have occured for multiple reasons including a 2003 "Required parameter missing", a 2004 "Parameter value range error", or a 2005 "Parameter value syntax error". The overlapping reasons also apply at the record level, where an object may be syntactically incorrect with a 2005 "Parameter value syntax error", and also be against server policy with a 2306 "Parameter value policy error". The server SHOULD attempt to provide the most accurate error result code to match the error. For example, a syntax error defined by the protocol SHOULD take precedence over a server policy error.
This section includes a set of Data Set File (DSF) result examples.
This section includes example Data Set File (DSF) files that reference the <dataSet:resultData> element, described in Section 3.1.3, for providing the meta-data about the result file, along with a set of fields that reference the <dataSet:fResultCode> field element, described in Section 2.4.2, for including the result code in processing the domain name record in the request.
Example Data Set File (DSF) for a succesful result by the server:
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <dataSet:definition xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dsfDomain= "urn:ietf:params:xml:ns:dsfDomain-1.0"> <dataSet:resultData code="1000"> <dataSet:fields> <dsfDomain:fName/> <dataSet:fResultCode/> <dataSet:fResultMsg/> <dataSet:fResultReason/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:svTRID>54322-XYZ</dataSet:svTRID> <dataSet:msg>Code Set processed successfully.</dataSet:msg> <dataSet:records> <dataSet:total>2</dataSet:total> <dataSet:success>2</dataSet:success> <dataSet:failed>0</dataSet:failed> </dataSet:records> </dataSet:resultData> </dataSet:definition> -----BEGIN DATA SET----- domain1.example,1000,, domain2.example,1000,, -----END DATA SET-----
Example Data Set File (DSF) for a partially successful result by the server:
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <dataSet:definition xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dsfDomain= "urn:ietf:params:xml:ns:dsfDomain-1.0"> <dataSet:resultData code="1001"> <dataSet:fields> <dsfDomain:fName/> <dataSet:fResultCode/> <dataSet:fResultMsg/> <dataSet:fResultReason/> </dataSet:fields> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:svTRID>54322-XYZ</dataSet:svTRID> <dataSet:msg>Success with failures</dataSet:msg> <dataSet:records> <dataSet:total>4</dataSet:total> <dataSet:success>1</dataSet:success> <dataSet:failed>3</dataSet:failed> </dataSet:records> </dataSet:resultData> </dataSet:definition> -----BEGIN DATA SET----- domain1.example,1000,Success, domain2.example,2303,Object does not exist, domain3.example,2201,Authorization error, domain4.example,2302,Object exists,domain code already set -----END DATA SET-----
Example Data Set File (DSF) for a failure result by the server:
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <dataSet:definition xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0"> <dataSet:resultData code="2000"> <dataSet:dataSetId>abc-123</dataSet:dataSetId> <dataSet:svTRID>54322-XYZ</dataSet:svTRID> <dataSet:msg>File syntax error</dataSet:msg> <dataSet:reason lang="en">Malformed request file </dataSet:reason> </dataSet:resultData> </dataSet:definition> -----BEGIN DATA SET----- -----END DATA SET-----
Each schema is included in a sub-section, starting with the Data Set schema and followed by each object schema.
The formal syntax presented here is a complete schema representation of the object mapping suitable for automated validation of EPP XML instances. The BEGIN and END tags are not part of the schema; they are used to note the beginning and ending of the schema for URI registration purposes.
Data Set schema that represents the base XML schema for the Data Set File (DSF).
BEGIN <?xml version="1.0" encoding="UTF-8"?> <schema targetNamespace= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dataSet= "urn:ietf:params:xml:ns:dataSet-1.0" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> <annotation> <documentation> Data Set XML Schema </documentation> </annotation> <import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="xmldsig-core-schema.xsd"/> <element name="definition" type="dataSet:definitionType"/> <complexType name="definitionType"> <sequence> <choice> <element name="encodedSignedDefData" type="dataSet:encodedSignedDefDataType"/> <element name="defData" type="dataSet:defDataType"/> <element name="resultData" type="dataSet:resultDataType"/> </choice> </sequence> </complexType> <!-- field seperator must be a single character --> <simpleType name="sepType"> <restriction base="string"> <minLength value="1"/> <maxLength value="1"/> </restriction> </simpleType> <!-- Ordered list of field definitions for the csv --> <complexType name="fieldsType"> <sequence maxOccurs="unbounded"> <element ref="dataSet:field"/> </sequence> <attribute name="sep" type="dataSet:sepType" default=","/> </complexType> <!-- defDataType --> <complexType name="defDataType"> <sequence> <element name="type" type="dataSet:typeType"/> <element name="fields" type="dataSet:fieldsType"/> <element name="dataSetId" type="dataSet:IdType"/> <element name="crDate" type="dateTime"/> </sequence> </complexType> <!-- typeType --> <complexType name="typeType"> <simpleContent> <extension base="token"> <attribute name="subType" type="token"/> </extension> </simpleContent> </complexType> <!-- signedData --> <element name="signedDefData" type="dataSet:signedDefDataType"/> <complexType name="signedDefDataType"> <complexContent> <extension base="dataSet:defDataType"> <sequence> <element name="cksum" type="token"/> <element ref="dsig:Signature"/> </sequence> <attribute name="id" type="ID" use="required"/> </extension> </complexContent> </complexType> <!-- resultDataType --> <complexType name="resultDataType"> <sequence> <element name="type" type="dataSet:typeType" minOccurs="0"/> <element name="fields" type="dataSet:fieldsType" minOccurs="0"/> <element name="dataSetId" type="dataSet:IdType" minOccurs="0"/> <element name="svTRID" type="dataSet:IdType"/> <element name="msg" type="dataSet:msgType"/> <element name="reason" type="dataSet:msgType" minOccurs="0"/> <element name="records" type="dataSet:recordsType" minOccurs="0"/> </sequence> <attribute name="code" type="dataSet:resultCodeType" use="required"/> </complexType> <complexType name="recordsType"> <sequence> <element name="total" type="unsignedInt"/> <element name="success" type="unsignedInt"/> <element name="failed" type="unsignedInt"/> </sequence> </complexType> <simpleType name="resultCodeType"> <restriction base="unsignedShort"> <!-- Success --> <enumeration value="1000"/> <!-- Success with failures --> <enumeration value="1001"/> <!-- File syntax error --> <enumeration value="2000"/> <!-- Invalid header --> <enumeration value="2001"/> <!-- Invalid body --> <enumeration value="2002"/> <!-- Required parameter missing --> <enumeration value="2003"/> <!-- Parameter value range error --> <enumeration value="2004"/> <!-- Parameter value syntax error --> <enumeration value="2005"/> <!-- Unimplemented protocol version --> <enumeration value="2100"/> <!-- Unimplemented option --> <enumeration value="2102"/> <!-- Unimplemented extension --> <enumeration value="2103"/> <!-- Billing failure --> <enumeration value="2104"/> <!-- Authorization error --> <enumeration value="2201"/> <!-- Invalid authorization information --> <enumeration value="2202"/> <!-- Object exists --> <enumeration value="2302"/> <!-- Object does not exist --> <enumeration value="2303"/> <!-- Object status prohibits operation --> <enumeration value="2304"/> <!-- Object association prohibits operation --> <enumeration value="2305"/> <!-- Parameter value policy error --> <enumeration value="2306"/> <!-- Unimplemented object service --> <enumeration value="2307"/> <!-- Data management policy violation --> <enumeration value="2308"/> <!-- Request failed --> <enumeration value="2400"/> </restriction> </simpleType> <simpleType name="IdType"> <restriction base="token"> <minLength value="3"/> <maxLength value="64"/> </restriction> </simpleType> <complexType name="msgType"> <simpleContent> <extension base="normalizedString"> <attribute name="lang" type="language" default="en"/> </extension> </simpleContent> </complexType> <!-- encodedSignedData --> <element name="encodedSignedDefData" type="dataSet:encodedSignedDefDataType"/> <complexType name="encodedSignedDefDataType"> <simpleContent> <extension base="token"> <attribute name="encoding" type="token" default="base64"/> </extension> </simpleContent> </complexType> <!-- Abstract field type --> <element name="field" type="dataSet:fieldType" abstract="true"/> <complexType name="fieldType"> <sequence/> </complexType> <!-- fieldType with optional value (isRequired=false) --> <complexType name="fieldOptionalType"> <complexContent> <extension base="dataSet:fieldType"> <sequence/> <attribute name="isRequired" type="boolean" default="false"/> <attribute name="isPrimaryKey" type="boolean" default="false"/> </extension> </complexContent> </complexType> <!-- fieldType with required value (isRequired=false) --> <complexType name="fieldRequiredType"> <complexContent> <extension base="dataSet:fieldType"> <sequence/> <attribute name="isRequired" type="boolean" default="true"/> <attribute name="isPrimaryKey" type="boolean" default="false"/> </extension> </complexContent> </complexType> <!-- fieldType as primary key field (isPrimaryKey=true) --> <complexType name="fieldPrimaryKeyType"> <complexContent> <extension base="dataSet:fieldType"> <sequence/> <attribute name="isRequired" type="boolean" default="true"/> <attribute name="isPrimaryKey" type="boolean" default="true"/> </extension> </complexContent> </complexType> <!-- fieldType as list item --> <complexType name="fListItemType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="op" type="dataSet:listItemOpType" default="replace"/> </extension> </complexContent> </complexType> <!-- Enumerated list item "op" attribute values --> <simpleType name="listItemOpType"> <restriction base="token"> <enumeration value="replace"/> <enumeration value="add"/> <enumeration value="remove"/> </restriction> </simpleType> <complexType name="fNameRequiredType"> <complexContent> <extension base="dataSet:fieldRequiredType"> <sequence/> <attribute name="type" type="token" default="eppcom\:labelType"/> </extension> </complexContent> </complexType> <element name="fName" type="dataSet:fNameType" substitutionGroup="dataSet:field"/> <complexType name="fNameType"> <complexContent> <extension base="dataSet:fieldPrimaryKeyType"> <sequence/> <attribute name="type" type="token" default="dataSet\:labelType"/> <attribute name="class" type="token" use="required"/> </extension> </complexContent> </complexType> <!-- Authorization Information field --> <element name="fAuthInfo" type="dataSet:fAuthInfoType" substitutionGroup="dataSet:field"/> <complexType name="fAuthInfoType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="eppcom\:pwAuthInfoType"/> </extension> </complexContent> </complexType> <!-- General token type --> <complexType name="fTokenType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="token"/> </extension> </complexContent> </complexType> <!-- boolean type --> <complexType name="fBooleanType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="boolean"/> </extension> </complexContent> </complexType> <!-- fResultCode field --> <element name="fResultCode" type="dataSet:fResultCodeType" substitutionGroup="dataSet:field"/> <complexType name="fResultCodeType"> <complexContent> <extension base="dataSet:fieldRequiredType"> <sequence/> <attribute name="type" type="token" default="dataSet\:resultCodeType"/> </extension> </complexContent> </complexType> <!-- fResultMsg field --> <element name="fResultMsg" type="dataSet:fResultMsgType" substitutionGroup="dataSet:field"/> <complexType name="fResultMsgType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="normalizedString"/> <attribute name="lang" type="language" default="en"/> </extension> </complexContent> </complexType> <!-- fResultReason field --> <element name="fResultReason" type="dataSet:fResultReasonType" substitutionGroup="dataSet:field"/> <complexType name="fResultReasonType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="normalizedString"/> <attribute name="lang" type="language" default="en"/> </extension> </complexContent> </complexType> <!-- unsignedByte type --> <complexType name="fUnsignedByteType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="unsignedByte"/> </extension> </complexContent> </complexType> <!-- unsignedShort type --> <complexType name="fUnsignedShortType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="unsignedShort"/> </extension> </complexContent> </complexType> <!-- hexBinary type --> <complexType name="fHexBinaryType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="hexBinary"/> </extension> </complexContent> </complexType> </schema> END
Domain Name Object XML schema that defines the fields specific to the Domain Name Object.
BEGIN <?xml version="1.0" encoding="UTF-8"?> <schema targetNamespace="urn:ietf:params:xml:ns:dsfDomain-1.0" xmlns:dsfDomain="urn:ietf:params:xml:ns:dsfDomain-1.0" xmlns:dataSet="urn:ietf:params:xml:ns:dataSet-1.0" xmlns:secDNS="urn:ietf:params:xml:ns:secDNS-1.1" xmlns:domain="urn:ietf:params:xml:ns:domain-1.0" xmlns:eppcom="urn:ietf:params:xml:ns:eppcom-1.0" xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> <!-- Import common element types --> <import namespace="urn:ietf:params:xml:ns:eppcom-1.0" schemaLocation="eppcom-1.0.xsd"/> <import namespace="urn:ietf:params:xml:ns:domain-1.0" schemaLocation="domain-1.0.xsd"/> <import namespace="urn:ietf:params:xml:ns:secDNS-1.1" schemaLocation="secDNS-1.1.xsd"/> <import namespace="urn:ietf:params:xml:ns:dataSet-1.0" schemaLocation="dataSet-1.0.xsd"/> <annotation> <documentation> Domain Name Data Set File (DSF) Object </documentation> </annotation> <!-- Domain name field --> <element name="fName" type="dataSet:fNameRequiredType" substitutionGroup="dataSet:field"/> <!-- Registration Period --> <element name="fPeriod" type="dsfDomain:fPeriodType" substitutionGroup="dataSet:field"/> <complexType name="fPeriodType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="domain\:pLimitType"/> </extension> </complexContent> </complexType> <!-- Registration Period Unit --> <element name="fPeriodUnit" type="dsfDomain:fPeriodUnitType" substitutionGroup="dataSet:field"/> <complexType name="fPeriodUnitType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="domain\:pUnitType"/> </extension> </complexContent> </complexType> <!-- Contact field --> <element name="fContact" type="dsfDomain:fContactsType" substitutionGroup="dataSet:field"/> <complexType name="fContactsType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="dataSet\:contactRoleType"/> <attribute name="role" type="dsfDomain:contactRoleType" use="required"/> </extension> </complexContent> </complexType> <simpleType name="contactRoleType"> <restriction base="token"> <enumeration value="registrant"/> <enumeration value="admin"/> <enumeration value="tech"/> <enumeration value="billing"/> </restriction> </simpleType> <!-- Domain name server --> <element name="fNs" type="dsfDomain:fNsType" substitutionGroup="dataSet:field"/> <complexType name="fNsType"> <complexContent> <extension base="dataSet:fListItemType"> <sequence/> <attribute name="type" type="token" default="domain\:pLimitType"/> </extension> </complexContent> </complexType> <!-- DNSSEC field types --> <!-- Maximum signature lifetime field --> <element name="fMaxSigLife" type="dsfDomain:fMaxSigLifeType" substitutionGroup="dataSet:field"/> <complexType name="fMaxSigLifeType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="secDNS\:maxSigLifeType"/> </extension> </complexContent> </complexType> <!-- Key tag field --> <element name="fKeyTag" type="dataSet:fUnsignedShortType" substitutionGroup="dataSet:field"/> <!-- DS Algorithm field --> <element name="fDsAlg" type="dataSet:fUnsignedByteType" substitutionGroup="dataSet:field"/> <!-- Digest type field --> <element name="fDigestType" type="dataSet:fUnsignedByteType" substitutionGroup="dataSet:field"/> <!-- Digest field --> <element name="fDigest" type="dataSet:fHexBinaryType" substitutionGroup="dataSet:field"/> <!-- Flags field --> <element name="fFlags" type="dataSet:fUnsignedShortType" substitutionGroup="dataSet:field"/> <!-- Protocol field --> <element name="fProtocol" type="dataSet:fUnsignedByteType" substitutionGroup="dataSet:field"/> <!-- Key Algorithm field --> <element name="fKeyAlg" type="dataSet:fUnsignedByteType" substitutionGroup="dataSet:field"/> <!-- Public Key field --> <element name="fPubKey" type="dsfDomain:fPubKeyType" substitutionGroup="dataSet:field"/> <complexType name="fPubKeyType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="secDNS\:keyType"/> </extension> </complexContent> </complexType> <!-- Domain status field --> <element name="fStatus" type="dsfDomain:fStatusType" substitutionGroup="dataSet:field"/> <!-- Domain status based on domain-1.0.xsd --> <complexType name="fStatusType"> <complexContent> <extension base="dataSet:fListItemType"> <sequence/> <attribute name="type" type="token" default="domain\:statusValueType"/> </extension> </complexContent> </complexType> <!-- End of schema. --> </schema> END
Host Object XML schema that defines the fields specific to the Host Object.
BEGIN <?xml version="1.0" encoding="UTF-8"?> <schema targetNamespace="urn:ietf:params:xml:ns:dsfHost-1.0" xmlns:dsfHost="urn:ietf:params:xml:ns:dsfHost-1.0" xmlns:dataSet="urn:ietf:params:xml:ns:dataSet-1.0" xmlns:host="urn:ietf:params:xml:ns:host-1.0" xmlns:eppcom="urn:ietf:params:xml:ns:eppcom-1.0" xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> <!-- Import common element types --> <import namespace="urn:ietf:params:xml:ns:eppcom-1.0" schemaLocation="eppcom-1.0.xsd"/> <import namespace="urn:ietf:params:xml:ns:host-1.0" schemaLocation="host-1.0.xsd"/> <import namespace="urn:ietf:params:xml:ns:dataSet-1.0" schemaLocation="dataSet-1.0.xsd"/> <annotation> <documentation> Host Name Data Set File (DSF) Object </documentation> </annotation> <!-- Host name field --> <element name="fName" type="dataSet:fNameRequiredType" substitutionGroup="dataSet:field"/> <!-- Host new name field --> <element name="fNewName" type="dsfHost:fNewNameType" substitutionGroup="dataSet:field"/> <complexType name="fNewNameType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="eppcom\:labelType"/> </extension> </complexContent> </complexType> <!-- IP address field --> <element name="fAddr" type="dsfHost:fAddrType" substitutionGroup="dataSet:field"/> <complexType name="fAddrType"> <complexContent> <extension base="dataSet:fListItemType"> <sequence/> <attribute name="type" type="token" default="host\:addrStringType"/> </extension> </complexContent> </complexType> <!-- IP address version field linked to the fAddr field --> <element name="fAddrVersion" type="dsfHost:fAddrVersionType" substitutionGroup="dataSet:field"/> <complexType name="fAddrVersionType"> <complexContent> <extension base="dataSet:fListItemType"> <sequence/> <attribute name="type" type="token" default="host\:ipType"/> </extension> </complexContent> </complexType> <!-- Host status field --> <element name="fStatus" type="dsfHost:fStatusType" substitutionGroup="dataSet:field"/> <!-- Host status based on host-1.0.xsd --> <complexType name="fStatusType"> <complexContent> <extension base="dataSet:fListItemType"> <sequence/> <attribute name="type" type="token" default="host\:statusValueType"/> </extension> </complexContent> </complexType> <!-- End of schema. --> </schema> END
Contact Object XML schema that defines the fields specific to the Contact Object.
BEGIN <?xml version="1.0" encoding="UTF-8"?> <schema targetNamespace="urn:ietf:params:xml:ns:dsfContact-1.0" xmlns:dsfContact="urn:ietf:params:xml:ns:dsfContact-1.0" xmlns:dataSet="urn:ietf:params:xml:ns:dataSet-1.0" xmlns:contact="urn:ietf:params:xml:ns:contact-1.0" xmlns:eppcom="urn:ietf:params:xml:ns:eppcom-1.0" xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> <!-- Import common element types. --> <import namespace="urn:ietf:params:xml:ns:eppcom-1.0" schemaLocation="eppcom-1.0.xsd"/> <import namespace="urn:ietf:params:xml:ns:contact-1.0" schemaLocation="contact-1.0.xsd"/> <import namespace="urn:ietf:params:xml:ns:dataSet-1.0" schemaLocation="dataSet-1.0.xsd"/> <annotation> <documentation> Contact Data Set File (DSF) Object </documentation> </annotation> <!-- Server-unique contact identifier field --> <element name="fId" type="dsfContact:fIdType" substitutionGroup="dataSet:field"/> <complexType name="fIdType"> <complexContent> <extension base="dataSet:fieldRequiredType"> <sequence/> <attribute name="type" type="token" default="eppcom\:clIDType"/> </extension> </complexContent> </complexType> <!-- Is Registrar Contact field --> <element name="fIsRegistrarContact" type="dataSet:fBooleanType" substitutionGroup="dataSet:field"/> <!-- voice and fax telephone number fields --> <element name="fVoice" type="dsfContact:fE164StringType" substitutionGroup="dataSet:field"/> <element name="fFax" type="dsfContact:fE164StringType" substitutionGroup="dataSet:field"/> <complexType name="fE164StringType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="contact\:e164StringType"/> </extension> </complexContent> </complexType> <!-- voice and fax telephone extension fields --> <element name="fVoiceExt" type="dataSet:fTokenType" substitutionGroup="dataSet:field"/> <element name="fFaxExt" type="dataSet:fTokenType" substitutionGroup="dataSet:field"/> <!-- contact email address field --> <element name="fEmail" type="dsfContact:fEmailType" substitutionGroup="dataSet:field"/> <complexType name="fEmailType"> <complexContent> <extension base="dataSet:fieldRequiredType"> <sequence/> <attribute name="type" type="token" default="eppcom\:minTokenType"/> </extension> </complexContent> </complexType> <!-- Postal type field ("loc" = localized, "int" = internationalized) --> <element name="fPostalType" type="dsfContact:fPostalTypeType" substitutionGroup="dataSet:field"/> <complexType name="fPostalTypeType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="contact\:postalInfoEnumType"/> </extension> </complexContent> </complexType> <!-- Standard postal line field --> <complexType name="fPostalLineType"> <complexContent> <extension base="dataSet:fieldRequiredType"> <sequence/> <attribute name="type" type="token" default="contact\:postalLineType"/> <attribute name="isLoc" type="boolean"/> </extension> </complexContent> </complexType> <!-- Standard optional postal line field --> <complexType name="fOptPostalLineType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="contact\:optPostalLineType"/> <attribute name="isLoc" type="boolean"/> </extension> </complexContent> </complexType> <!-- Name of the individual or role field --> <element name="fName" type="dsfContact:fPostalLineType" substitutionGroup="dataSet:field"/> <!-- Name organization field --> <element name="fOrg" type="dsfContact:fOptPostalLineType" substitutionGroup="dataSet:field"/> <!-- Street address line field with required index attribute --> <!-- starting with index 0. --> <element name="fStreet" type="dsfContact:fStreetType" substitutionGroup="dataSet:field"/> <complexType name="fStreetType"> <complexContent> <extension base="dsfContact:fOptPostalLineType"> <sequence/> <attribute name="index" type="int" use="required"/> </extension> </complexContent> </complexType> <!-- Contact's city field --> <element name="fCity" type="dsfContact:fPostalLineType" substitutionGroup="dataSet:field"/> <!-- Contact's state or province field --> <element name="fSp" type="dsfContact:fOptPostalLineType" substitutionGroup="dataSet:field"/> <!-- Contact's postal code field --> <element name="fPc" type="dsfContact:fPcType" substitutionGroup="dataSet:field"/> <complexType name="fPcType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="contact\:pcType"/> <attribute name="isLoc" type="boolean"/> </extension> </complexContent> </complexType> <!-- Contact's country code field --> <element name="fCc" type="dsfContact:fCcType" substitutionGroup="dataSet:field"/> <complexType name="fCcType"> <complexContent> <extension base="dataSet:fieldRequiredType"> <sequence/> <attribute name="type" type="token" default="contact\:ccType"/> <attribute name="isLoc" type="boolean"/> </extension> </complexContent> </complexType> <!-- Disclosure element fields --> <!-- Flag of "1" to allow disclosure and "0" to disallow disclosure --> <element name="fDiscloseFlag" type="dsfContact:fBoolean" substitutionGroup="dataSet:field"/> <!-- Disclosure of localized name based on fDiscloseFlag? --> <element name="fDiscloseNameLoc" type="dsfContact:fBoolean" substitutionGroup="dataSet:field"/> <!-- Disclosure of internationalized name based on fDiscloseFlag? --> <element name="fDiscloseNameInt" type="dsfContact:fBoolean" substitutionGroup="dataSet:field"/> <!-- Disclosure of localized org based on fDiscloseFlag? --> <element name="fDiscloseOrgLoc" type="dsfContact:fBoolean" substitutionGroup="dataSet:field"/> <!-- Disclosure of internationalized org based on fDiscloseFlag? --> <element name="fDiscloseOrgInt" type="dsfContact:fBoolean" substitutionGroup="dataSet:field"/> <!-- Disclosure of localized address based on fDiscloseFlag? --> <element name="fDiscloseAddrLoc" type="dsfContact:fBoolean" substitutionGroup="dataSet:field"/> <!-- Disclosure of internationalized address based on fDiscloseFlag? --> <element name="fDiscloseAddrInt" type="dsfContact:fBoolean" substitutionGroup="dataSet:field"/> <!-- Disclosure voice telephone number based on fDiscloseFlag? --> <element name="fDiscloseVoice" type="dsfContact:fBoolean" substitutionGroup="dataSet:field"/> <!-- Disclosure facsimile telephone number based on fDiscloseFlag? --> <element name="fDiscloseFax" type="dsfContact:fBoolean" substitutionGroup="dataSet:field"/> <!-- Disclosure email address based on fDiscloseFlag? --> <element name="fDiscloseEmail" type="dsfContact:fBoolean" substitutionGroup="dataSet:field"/> <complexType name="fBoolean"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="boolean"/> </extension> </complexContent> </complexType> <!-- Contact status field --> <element name="fStatus" type="dsfContact:fStatusType" substitutionGroup="dataSet:field"/> <!-- Host status based on contact-1.0.xsd --> <complexType name="fStatusType"> <complexContent> <extension base="dataSet:fListItemType"> <sequence/> <attribute name="type" type="token" default="contact\:statusValueType"/> </extension> </complexContent> </complexType> <!-- End of schema. --> </schema> END
Verification Code Object XML schema that defines the fields specific to the Verification Code Object.
BEGIN <?xml version="1.0" encoding="UTF-8"?> <schema targetNamespace= "urn:ietf:params:xml:ns:dsfVerificationCode-1.0" xmlns:dsfVerificationCode= "urn:ietf:params:xml:ns:dsfVerificationCode-1.0" xmlns:dataSet="urn:ietf:params:xml:ns:dataSet-1.0" xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> <annotation> <documentation> Verification Code Data Set File (DSF) Object </documentation> </annotation> <import namespace="urn:ietf:params:xml:ns:dataSet-1.0" schemaLocation="dataSet-1.0.xsd"/> <!-- fCode field --> <element name="fCode" type="dsfVerificationCode:fCodeType" substitutionGroup="dataSet:field"/> <complexType name="fCodeType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="dsfVerificationCode\:verificationCodeValueType"/> <attribute name="codeType" type="token"/> </extension> </complexContent> </complexType> <!-- Format of verification code value --> <simpleType name="verificationCodeValueType"> <restriction base="token"> <pattern value="\d+-[A-Za-z0-9]+"/> </restriction> </simpleType> <!-- fEncodedSignedCode field --> <element name="fEncodedSignedCode" type="dsfVerificationCode:fEncodedSignedCodeType" substitutionGroup="dataSet:field"/> <complexType name="fEncodedSignedCodeType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="token"/> <attribute name="encoding" type="token" default="base64"/> </extension> </complexContent> </complexType> </schema> END
Routing XML schema that defines the fields specific to routing.
BEGIN <?xml version="1.0" encoding="UTF-8"?> <schema targetNamespace= "urn:ietf:params:xml:ns:dsfRouting-1.0" xmlns:dsfRouting= "urn:ietf:params:xml:ns:dsfRouting-1.0" xmlns:dataSet="urn:ietf:params:xml:ns:dataSet-1.0" xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> <annotation> <documentation> Routing Data Set File (DSF) Fields </documentation> </annotation> <import namespace="urn:ietf:params:xml:ns:dataSet-1.0" schemaLocation="dataSet-1.0.xsd"/> <!-- fSubProduct field --> <element name="fSubProduct" type="dsfRouting:fSubProductType" substitutionGroup="dataSet:field"/> <complexType name="fSubProductType"> <complexContent> <extension base="dataSet:fieldOptionalType"> <sequence/> <attribute name="type" type="token" default="token"/> </extension> </complexContent> </complexType> </schema> END
This document uses URNs to describe XML namespaces and XML schemas conforming to a registry mechanism described in [RFC3688].
Registration request for the dataSet namespace:
Registration request for the dataSet XML schema:
Registration request for the dsfDomain namespace:
Registration request for the dsfDomain XML schema:
Registration request for the dsfHost namespace:
Registration request for the dsfHost XML schema:
Registration request for the dsfContact namespace:
Registration request for the dsfContact XML schema:
Registration request for the dsfVerificationCode namespace:
Registration request for the dsfVerificationCode XML schema:
Registration request for the dsfRouting namespace:
Registration request for the dsfRouting XML schema:
The data supported by the Data Set File (DSF) format MAY include information that needs to be protected with the use of a secure transport. For example, the <dataSet:fAuthInfo> field provides object authorization information, and as described in [RFC5731], both the client and the server MUST ensure that it is stored and exchanged with high-grade encryption mechanisms. The transport leveraged to exchange the DSF containing sensitive or secure data MUST protect it from inadvertent disclosure.
XML Signature [W3C.CR-xmldsig-core2-20120124] is used in this document to verify that the Data Set originated from a trusted source and that it wasn't tampered with in transit from the source to the client to the server. To support multiple source keys, the source certificate chain MUST be included in the <X509Certificate> elements of the Signed Def Data [signedDefData] and MUST chain up and be verified by the server against a set of trusted certificates.
It is RECOMMENDED that signed definition data does not include white-spaces between the XML elements in order to mitigate risks of invalidating the digital signature when transferring of signed codes between applications takes place.
Use of XML canonicalization SHOULD be used when generating the signed code. SHA256/RSA-SHA256 SHOULD be used for digesting and signing. The size of the RSA key SHOULD be at least 2048 bits.
The author wishes to acknowledge the work done by Scott Hollenbeck in the EPP RFC 5730 for providing some of the concepts and text used in this document.
Special suggestions that have been incorporated into this document were provided by John Colosi, Deepak Deshpande, Scott Hollenbeck, Suzy Strier, and Srikanth Veeramachaneni.