1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
|
Network Working Group B. Hoeneisen
Request for Comments: 5076 SWITCH
Category: Standards Track December 2007
ENUM Validation Information Mapping
for the Extensible Provisioning Protocol
Status of This Memo
This document specifies an Internet standards track protocol for the
Internet community, and requests discussion and suggestions for
improvements. Please refer to the current edition of the "Internet
Official Protocol Standards" (STD 1) for the standardization state
and status of this protocol. Distribution of this memo is unlimited.
Abstract
This document describes an Extensible Provisioning Protocol (EPP)
extension framework for mapping information about the validation
process that has been applied for the E.164 number (or number range)
that the E.164 Number Mapping (ENUM) domain name is based on.
Specified in the Extensible Markup Language (XML), this mapping
extends the EPP domain name mapping to provide an additional feature
required for the provisioning of ENUM Domain Names.
Hoeneisen Standards Track [Page 1]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
Table of Contents
1. Introduction ....................................................2
2. Terminology .....................................................3
3. Requirements ....................................................4
4. Object Attributes ...............................................4
4.1. ENUM Domain Names ..........................................4
4.2. Validation Information Commands ............................4
4.3. Id .........................................................4
4.4. Validation Information .....................................5
4.5. Validation Elements in the Example .........................5
4.5.1. Method Identifier ...................................5
4.5.2. Validation Entity Identifier ........................5
4.5.3. Registrar Identifier ................................5
4.5.4. Execution Date ......................................6
4.5.5. Expiration Date .....................................6
5. EPP Command Mapping .............................................6
5.1. EPP Query Commands .........................................6
5.1.1. EPP <check> Command .................................6
5.1.2. EPP <info> Command ..................................6
5.1.3. EPP <transfer> Command ..............................8
5.2. EPP Transform Commands .....................................9
5.2.1. EPP <create> Command ................................9
5.2.2. EPP <delete> Command ...............................11
5.2.3. EPP <renew> Command ................................11
5.2.4. EPP <transfer> Command .............................13
5.2.5. EPP <update> Command ...............................15
6. Formal Syntax ..................................................16
7. IANA Considerations ............................................21
8. Security Considerations ........................................21
9. Acknowledgements ...............................................22
10. References ....................................................22
10.1. Normative References .....................................22
10.2. Informative References ...................................23
1. Introduction
This document describes a framework for an ENUM [2] validation
information mapping for version 1.0 of EPP [3]. This mapping, an
extension of the EPP domain name mapping described in [4], is
specified using XML 1.0, as described in [5], and XML Schema
notation, as described in [6] and [7].
The EPP core protocol specification [3] provides a complete
description of EPP command and response structures. A thorough
understanding of the base protocol specification is necessary to
understand the mapping described in this document.
Hoeneisen Standards Track [Page 2]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
ENUM [2] describes how the Domain Name System (DNS) can be used to
identify services associated with an E.164 number.
As described in RFC 4725 [9], usually only the Assignee of the E.164
number (or number range) has the right to register the corresponding
ENUM domain name. Therefore, an ENUM validation process has to be
applied before the ENUM domain name can be inserted into the DNS.
The validation process shall ensure that the holder of the ENUM
domain name coincides with the Assignee of the corresponding E.164
number (or number range). However, the details of the ENUM
validation methods are beyond the scope of this document.
The EPP extension described in this document specifies a framework
for the mapping of information about the ENUM validation process. As
the local legislation or the validation procedures may vary, the
content of the validation information itself is not part of this
specification.
However, this document contains a working example (including XML
schema) to show how the validation information could look. This
example could even be used for a lightweight validation process. In
fact, it has been an integral part of the Swiss ENUM trial.
Using this extension framework, the content of the validation
information can be specified according to the local requirements.
Such an extension is specified in [10].
More background information concerning the validation can be found in
RFC 4725 [9], which also describes a typical basic role model for the
ENUM registration process.
2. Terminology
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 [1].
In examples, "C:" represents lines sent by a protocol client and "S:"
represents lines returned by a protocol server. Indentation and
white space in examples are provided only to illustrate element
relationships and are not REQUIRED features of this specification.
XML is case sensitive. Unless stated otherwise, XML specifications
and examples provided in this document MUST be interpreted in the
character case presented to develop a conforming implementation.
Hoeneisen Standards Track [Page 3]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
3. Requirements
The following requirements are the basis for this work:
1. The design shall allow multiple policies and validation
procedures.
2. It shall be possible to transmit validation information with EPP
domain object requests and responses.
3. It shall be possible to add, modify, and remove validation
information.
4. It shall be possible to retrieve validation information stored in
the ENUM Registry.
4. Object Attributes
This extension adds additional elements to the EPP domain name
mapping [4]. Only new element descriptions are listed here.
4.1. ENUM Domain Names
An ENUM Domain Name is a representation of an E.164 number that has
been translated to conform to domain name syntax as described in the
ENUM specification [2].
4.2. Validation Information Commands
The following commands are defined for handling validation
information at the registry:
o add: to add new validation information
o rem: to revoke validation information
o chg: to change stored validation information
o inf: to get information about stored validation information
4.3. Id
The "id" attribute, used to identify the validation, is represented
in this mapping using a character string. It MUST be unique at least
within the same ENUM Domain Name. To ensure uniqueness even after a
transfer of an ENUM Domain Name, it is RECOMMENDED that the "id"
attribute be unique per ENUM Registry.
Hoeneisen Standards Track [Page 4]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
The "id" attribute, usually assigned by the ENUM Registrar, is
required for revoking or changing stored validation information and
appears in the Validation Information Command elements (see Section
4.2).
4.4. Validation Information
The <validationInfo> element can contain any element containing
validation information that is documented adequately. It is
represented in this mapping using the XML schema <any> element and
therefore, is extensible.
The number of <validationInfo> elements permitted per domain object
is subject to local policy.
4.5. Validation Elements in the Example
As described above, this document includes an example for a possible
content of validation information that is used in the EPP examples
throughout this document.
This example is an optional part of this specification, i.e., a fully
compliant RFC 5076 implementation does not need to implement this
example.
4.5.1. Method Identifier
The <methodID> element is represented in this mapping using a
character string with a maximum length of 63 characters. It contains
an identifier for the method used for the validation. As stated in
Section 1, the details of the ENUM validation methods are beyond the
scope of this document.
4.5.2. Validation Entity Identifier
The <validationEntityID> element is represented in this mapping using
a character string with a length of 3 to 16 characters. It contains
an identifier assigned to the ENUM Validation Entity, e.g., by the
ENUM Registry.
4.5.3. Registrar Identifier
The <registrarID> element is represented in this mapping using a
character string with a length of 3 to 16 characters. It contains an
identifier assigned to the ENUM Registrar by the ENUM Registry.
Hoeneisen Standards Track [Page 5]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
4.5.4. Execution Date
The <executionDate> element, the execution date of the validation, is
represented in this mapping using the XML Schema 'date' data type.
4.5.5. Expiration Date
The <expirationDate> element, the expiration date of the validation,
is represented in this mapping using the XML Schema 'date' data type.
5. EPP Command Mapping
A detailed description of the EPP syntax and semantics can be found
in the EPP core protocol specification [3], and the EPP domain name
mapping is described in [4]. The command mappings described here are
specifically for use in implementing ENUM validation information
provisioning processes via EPP.
Note: Whether or not this extension is included into an EPP request
or response depends on local policy. For example, a local Registry
policy might require the use of this extension for EPP <create>,
<update>, and <info> commands, but not support it for EPP <transfer>
and <renew> commands. Therefore, this is beyond the scope of this
document.
5.1. EPP Query Commands
EPP provides three commands to retrieve object information: <check>
to determine if an object is known to the server, <info> to retrieve
detailed information associated with an object, and <transfer> to
retrieve object transfer status information.
5.1.1. EPP <check> Command
This extension does not add any elements to the EPP <check> command
or <check> response described in the EPP domain mapping [4].
5.1.2. EPP <info> Command
This extension does not add any elements to the EPP <info> command
described in the EPP domain mapping [4]. Additional elements are
defined for the <info> response.
When an <info> command has been processed successfully, the EPP
<resData> element MUST contain child elements as described in the EPP
domain mapping [4]. In addition, the EPP <extension> element MUST
contain an <e164val:infData> element that identifies the extension
namespace. The <e164val:infData> element contains one or more
Hoeneisen Standards Track [Page 6]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
<e164val:inf> elements, each with an "id" attribute identifying the
validation. Each <e164val:inf> element contains an <e164val:
validationInfo> element, which contains the validation information as
child element.
In the example below, the validation information consists of a
<valex:simpleVal> element that identifies the extension namespace.
The <valex:simpleVal> element contains the following child elements:
o An <e164val:methodID> element that contains an identifier of the
validation method.
o An OPTIONAL <e164val:validationEntityID> element that contains an
identifier assigned to the ENUM Validation Entity.
o An OPTIONAL <e164val:registrarID> element that contains an
identifier assigned to the ENUM Registrar by the ENUM Registry.
o An <e164val:executionDate> element that contains the date that the
validation was performed.
o An OPTIONAL <e164val:expirationDate> element that contains the
date that the validation expires.
Example for <info> response:
S:<?xml version="1.0" encoding="UTF-8" standalone="no"?>
S:<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
S: xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
S: <response>
S: <result code="1000">
S: <msg>Command completed successfully</msg>
S: </result>
S: <resData>
S: <domain:infData
S: xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
S: <domain:name>5.1.5.1.8.6.2.4.4.1.4.e164.arpa</domain:name>
S: <domain:roid>EXAMPLE1-REP</domain:roid>
S: <domain:status s="ok"/>
S: <domain:registrant>jd1234</domain:registrant>
S: <domain:contact type="admin">sh8013</domain:contact>
S: <domain:contact type="tech">sh8013</domain:contact>
S: <domain:ns>
S: <domain:hostObj>ns1.example.com</domain:hostObj>
S: <domain:hostObj>ns2.example.com</domain:hostObj>
S: </domain:ns>
S: <domain:clID>ClientX</domain:clID>
S: <domain:crID>ClientY</domain:crID>
Hoeneisen Standards Track [Page 7]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
S: <domain:crDate>1999-04-03T22:00:00.0Z</domain:crDate>
S: <domain:upID>ClientX</domain:upID>
S: <domain:upDate>1999-12-03T09:00:00.0Z</domain:upDate>
S: <domain:exDate>2005-04-03T22:00:00.0Z</domain:exDate>
S: <domain:trDate>2000-04-08T09:00:00.0Z</domain:trDate>
S: <domain:authInfo>
S: <domain:pw>2fooBAR</domain:pw>
S: </domain:authInfo>
S: </domain:infData>
S: </resData>
S: <extension>
S: <e164val:infData
S: xmlns:e164val="urn:ietf:params:xml:ns:e164val-1.0">
S: <e164val:inf id="EK77">
S: <e164val:validationInfo>
S: <valex:simpleVal
S: xmlns:valex="urn:ietf:params:xml:ns:e164valex-1.1">
S: <valex:methodID>Validation-X</valex:methodID>
S: <valex:validationEntityID>VE-NMQ</valex:validationEntityID>
S: <valex:registrarID>Client-X</valex:registrarID>
S: <valex:executionDate>2004-04-08</valex:executionDate>
S: <valex:expirationDate>2004-10-07</valex:expirationDate>
S: </valex:simpleVal>
S: </e164val:validationInfo>
S: </e164val:inf>
S: </e164val:infData>
S: </extension>
S: <trID>
S: <clTRID>ABC-23456</clTRID>
S: <svTRID>54321-XYZ</svTRID>
S: </trID>
S: </response>
S:</epp>
Figure 1
5.1.3. EPP <transfer> Command
This extension does not add any elements to the EPP <transfer>
command or <transfer> response described in the EPP domain mapping
[4].
Hoeneisen Standards Track [Page 8]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
5.2. EPP Transform Commands
EPP provides five commands to transform objects: <create> to create
an instance of an object, <delete> to delete an instance of an
object, <renew> to extend the validity period of an object,
<transfer> to manage object sponsorship changes, and <update> to
change information associated with an object.
5.2.1. EPP <create> Command
This extension defines additional elements for the EPP <create>
command described in the EPP domain mapping [4]. No additional
elements are defined for the EPP <create> response.
The EPP <create> command provides a transform operation that allows a
client to create a domain object. In addition to the EPP command
elements described in the EPP domain mapping [4], the command MUST
contain an <extension> element. The <extension> element MUST contain
an <e164val:create> element that identifies the extension namespace.
The <e164val:create> element contains one or more <e164val:add>
elements, each with an "id" attribute identifying the validation.
Each <e164val:add> element contains an <e164val:validationInfo>
element, which contains the validation information as child element.
In the example below, the validation information consists of a
<valex:simpleVal> element that identifies the extension namespace.
The <valex:simpleVal> element contains the following child elements:
o An <e164val:methodID> element that contains an identifier of the
validation method.
o An OPTIONAL <e164val:validationEntityID> element that contains an
identifier assigned to the ENUM Validation Entity.
o An OPTIONAL <e164val:registrarID> element that contains an
identifier assigned to the ENUM Registrar by the ENUM Registry.
o An <e164val:executionDate> element that contains the date that the
validation was performed.
o An OPTIONAL <e164val:expirationDate> element that contains the
date that the validation expires.
Hoeneisen Standards Track [Page 9]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
Example for <create> command:
C:<?xml version="1.0" encoding="UTF-8" standalone="no"?>
C:<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
C: xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
C: <command>
C: <create>
C: <domain:create
C: xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
C: <domain:name>5.1.5.1.8.6.2.4.4.1.4.e164.arpa</domain:name>
C: <domain:period unit="y">1</domain:period>
C: <domain:ns>
C: <domain:hostObj>ns1.example.com</domain:hostObj>
C: <domain:hostObj>ns2.example.com</domain:hostObj>
C: </domain:ns>
C: <domain:registrant>jd1234</domain:registrant>
C: <domain:contact type="admin">sh8013</domain:contact>
C: <domain:contact type="tech">sh8013</domain:contact>
C: <domain:authInfo>
C: <domain:pw>2fooBAR</domain:pw>
C: </domain:authInfo>
C: </domain:create>
C: </create>
C: <extension>
C: <e164val:create
C: xmlns:e164val="urn:ietf:params:xml:ns:e164val-1.0">
C: <e164val:add id="EK77">
C: <e164val:validationInfo>
C: <valex:simpleVal
C: xmlns:valex="urn:ietf:params:xml:ns:e164valex-1.1">
C: <valex:methodID>Validation-X</valex:methodID>
C: <valex:validationEntityID>VE-NMQ</valex:validationEntityID>
C: <valex:registrarID>Client-X</valex:registrarID>
C: <valex:executionDate>2004-04-08</valex:executionDate>
C: <valex:expirationDate>2004-10-07</valex:expirationDate>
C: </valex:simpleVal>
C: </e164val:validationInfo>
C: </e164val:add>
C: </e164val:create>
C: </extension>
C: <clTRID>ABC-12345</clTRID>
C: </command>
C:</epp>
Figure 2
When an extended <create> command has been processed successfully,
the EPP response is as described in the EPP domain mapping [4].
Hoeneisen Standards Track [Page 10]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
5.2.2. EPP <delete> Command
This extension does not add any elements to the EPP <delete> command
or <delete> response described in the EPP domain mapping [4].
5.2.3. EPP <renew> Command
This extension defines additional elements for the EPP <renew>
command described in the EPP domain mapping [4]. No additional
elements are defined for the EPP <renew> response.
The EPP <renew> command provides a transform operation that allows a
client to extend the validity period of a domain object. In addition
to the EPP command elements described in the EPP domain mapping [4],
the <renew> command MUST contain an <extension> element. The
<extension> element MUST contain an <e164val:renew> element that
identifies the extension namespace. The <e164val:renew> element
contains one or more <e164val:add> elements, each with an "id"
attribute identifying the validation. Each <e164val:add> element
contains an <e164val:validationInfo> element, which contains the
validation information as child element.
In the example below, the validation information consists of a
<valex:simpleVal> element that identifies the extension namespace.
The <valex:simpleVal> contains the following child elements:
o An <e164val:methodID> element that contains an identifier of the
validation method.
o An OPTIONAL <e164val:validationEntityID> element that contains an
identifier assigned to the ENUM Validation Entity.
o An OPTIONAL <e164val:registrarID> element that contains an
identifier assigned to the ENUM Registrar by the ENUM Registry.
o An <e164val:executionDate> element that contains the date that the
validation was performed.
o An OPTIONAL <e164val:expirationDate> element that contains the
date that the validation expires.
Hoeneisen Standards Track [Page 11]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
Example for <renew> command:
C:<?xml version="1.0" encoding="UTF-8" standalone="no"?>
C:<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
C: xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
C: <command>
C: <renew>
C: <domain:renew
C: xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
C: <domain:name>5.1.5.1.8.6.2.4.4.1.4.e164.arpa</domain:name>
C: <domain:curExpDate>2005-04-09</domain:curExpDate>
C: <domain:period unit="y">1</domain:period>
C: </domain:renew>
C: </renew>
C: <extension>
C: <e164val:renew
C: xmlns:e164val="urn:ietf:params:xml:ns:e164val-1.0">
C: <e164val:add id="CAB176">
C: <e164val:validationInfo>
C: <valex:simpleVal
C: xmlns:valex="urn:ietf:params:xml:ns:e164valex-1.1">
C: <valex:methodID>Validation-X</valex:methodID>
C: <valex:validationEntityID>VE-NMQ</valex:validationEntityID>
C: <valex:registrarID>Client-X</valex:registrarID>
C: <valex:executionDate>2005-03-30</valex:executionDate>
C: <valex:expirationDate>2005-09-29</valex:expirationDate>
C: </valex:simpleVal>
C: </e164val:validationInfo>
C: </e164val:add>
C: </e164val:renew>
C: </extension>
C: <clTRID>ABC-45678</clTRID>
C: </command>
C:</epp>
Figure 3
When an extended <renew> command has been processed successfully, the
EPP response is as described in the EPP domain mapping [4].
Hoeneisen Standards Track [Page 12]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
5.2.4. EPP <transfer> Command
This extension defines additional elements for the EPP <transfer>
command described in the EPP domain mapping [4]. No additional
elements are defined for the EPP <transfer> response.
The EPP <transfer> command provides a transform operation that allows
a client to manage requests to transfer the sponsorship of a domain
object. Clients can initiate, cancel, approve, and reject a transfer
request.
In case of a transfer request, in addition to the EPP command
elements described in the EPP domain mapping [4], the command MUST
contain an <extension> element. The <extension> element MUST contain
an <e164val:transfer> element that identifies the extension
namespace. The <e164val:transfer> element contains one or more
<e164val:add> elements, each with an "id" attribute identifying the
validation. Each <e164val:add> element contains an <e164val:
validationInfo> element, which contains the validation information as
child element.
In the example below, the validation information consists of a
<valex:simpleVal> element that identifies the extension namespace.
The <valex:simpleVal> contains the following child elements:
o An <e164val:methodID> element that contains an identifier of the
validation method.
o An OPTIONAL <e164val:validationEntityID> element that contains an
identifier assigned to the ENUM Validation Entity.
o An OPTIONAL <e164val:registrarID> element that contains an
identifier assigned to the ENUM Registrar by the ENUM Registry.
o An <e164val:executionDate> element that contains the date that the
validation was performed.
o An OPTIONAL <e164val:expirationDate> element that contains the
date that the validation expires.
Hoeneisen Standards Track [Page 13]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
Example for <transfer> command:
C:<?xml version="1.0" encoding="UTF-8" standalone="no"?>
C:<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
C: xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
C: <command>
C: <transfer op="request">
C: <domain:transfer
C: xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
C: <domain:name>5.1.5.1.8.6.2.4.4.1.4.e164.arpa</domain:name>
C: <domain:authInfo>
C: <domain:pw roid="HB1973-ZUE">2fooBAR</domain:pw>
C: </domain:authInfo>
C: </domain:transfer>
C: </transfer>
C: <extension>
C: <e164val:transfer
C: xmlns:e164val="urn:ietf:params:xml:ns:e164val-1.0">
C: <e164val:add id="LJ1126">
C: <e164val:validationInfo>
C: <valex:simpleVal
C: xmlns:valex="urn:ietf:params:xml:ns:e164valex-1.1">
C: <valex:methodID>Validation-Y</valex:methodID>
C: <valex:validationEntityID>VE2-LMQ</valex:validationEntityID>
C: <valex:registrarID>Client-Y</valex:registrarID>
C: <valex:executionDate>2005-01-22</valex:executionDate>
C: <valex:expirationDate>2005-07-21</valex:expirationDate>
C: </valex:simpleVal>
C: </e164val:validationInfo>
C: </e164val:add>
C: </e164val:transfer>
C: </extension>
C: <clTRID>XYZ-54789</clTRID>
C: </command>
C:</epp>
Figure 4
When an extended <transfer> command has been processed successfully,
the EPP response is as described in the EPP domain mapping [4].
Hoeneisen Standards Track [Page 14]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
5.2.5. EPP <update> Command
This extension defines additional elements for the EPP <update>
command described in the EPP domain mapping [4]. No additional
elements are defined for the EPP <update> response. The EPP <update>
command provides a transform operation that allows a client to change
the state of a domain object. In addition to the EPP command
elements described in the EPP domain mapping [4], the <update>
command MUST contain an <extension> element. The <extension> element
MUST contain an <e164val:update> element that identifies the
extension namespace. The <e164val:update> element contains one or
more <e164val:add>, <e164val:rem>, or <e164val:chg> elements, each
with an "id" attribute identifying the validation. Each
<e164val:add> and <e164val:chg> element contains an <e164val:
validationInfo> element, which contains the validation information as
child element. <e164val:rem> elements do not have child elements.
In the example below, the validation information consists of a
<valex:simpleVal> element that identifies the extension namespace.
The <valex:simpleVal> contains the following child elements:
o An <e164val:methodID> element that contains an identifier of the
validation method.
o An OPTIONAL <e164val:validationEntityID> element that contains an
identifier assigned to the ENUM Validation Entity.
o An OPTIONAL <e164val:registrarID> element that contains an
identifier assigned to the ENUM Registrar by the ENUM Registry.
o An <e164val:executionDate> element that contains the date that the
validation was performed.
o An OPTIONAL <e164val:expirationDate> element that contains the
date that the validation expires.
Hoeneisen Standards Track [Page 15]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
Example for <update> command:
C:<?xml version="1.0" encoding="UTF-8" standalone="no"?>
C:<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
C: xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
C: <command>
C: <update>
C: <domain:update
C: xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
C: <domain:name>5.1.5.1.8.6.2.4.4.1.4.e164.arpa</domain:name>
C: </domain:update>
C: </update>
C: <extension>
C: <e164val:update
C: xmlns:e164val="urn:ietf:params:xml:ns:e164val-1.0">
C: <e164val:add id="EK2510">
C: <e164val:validationInfo>
C: <valex:simpleVal
C: xmlns:valex="urn:ietf:params:xml:ns:e164valex-1.1">
C: <valex:methodID>Validation-X</valex:methodID>
C: <valex:validationEntityID>VE-NMQ</valex:validationEntityID>
C: <valex:registrarID>Client-X</valex:registrarID>
C: <valex:executionDate>2004-10-02</valex:executionDate>
C: <valex:expirationDate>2005-04-01</valex:expirationDate>
C: </valex:simpleVal>
C: </e164val:validationInfo>
C: </e164val:add>
C: <e164val:rem id="EK77"/>
C: </e164val:update>
C: </extension>
C: <clTRID>ABC-34567</clTRID>
C: </command>
C:</epp>
Figure 5
When an extended <update> command has been processed successfully,
the EPP response is as described in the EPP domain mapping [4].
6. Formal Syntax
An EPP object mapping is specified in XML Schema notation. 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 schemas; they
are used to note the beginning and ending of the schema for URI
registration purposes.
Hoeneisen Standards Track [Page 16]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
Formal syntax for Framework:
BEGIN
<?xml version="1.0" encoding="UTF-8"?>
<schema targetNamespace="urn:ietf:params:xml:ns:e164val-1.0"
xmlns:e164val="urn:ietf:params:xml:ns:e164val-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"/>
<annotation>
<documentation>
Extensible Provisioning Protocol v1.0
domain name extension schema for framework for
provisioning of E.164 number validation information.
</documentation>
</annotation>
<!--
Child elements found in EPP commands.
-->
<element name="create" type="e164val:insertType"/>
<element name="update" type="e164val:updateType"/>
<element name="renew" type="e164val:insertType"/>
<element name="transfer" type="e164val:insertType"/>
<!--
Child elements of the <create>, <renew>, and <update> commands.
-->
<complexType name="insertType">
<sequence>
<element name="add" type="e164val:addType"
maxOccurs="unbounded" />
</sequence>
</complexType>
<!--
Child elements of the <update> command.
-->
<complexType name="updateType">
<sequence>
<element name="add" type="e164val:addType"
Hoeneisen Standards Track [Page 17]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
minOccurs="0"
maxOccurs="unbounded"/>
<element name="rem" type="e164val:remType"
minOccurs="0"
maxOccurs="unbounded"/>
<element name="chg" type="e164val:chgType"
minOccurs="0"
maxOccurs="unbounded"/>
</sequence>
</complexType>
<!--
Data elements for add, chg and rem.
-->
<complexType name="addType">
<sequence>
<element ref="e164val:validationInfo"/>
</sequence>
<attribute name="id" type="eppcom:minTokenType"
use="required"/>
</complexType>
<complexType name="chgType">
<sequence>
<element ref="e164val:validationInfo"/>
</sequence>
<attribute name="id" type="eppcom:minTokenType"
use="required"/>
</complexType>
<complexType name="remType">
<attribute name="id" type="eppcom:minTokenType"
use="required"/>
</complexType>
<!--
Child elements found in EPP responses
-->
<element name="infData" type="e164val:infDataType"/>
<!--
child elements of the <info> response.
-->
<complexType name="infDataType">
<sequence>
<element name="inf" type="e164val:infType"
minOccurs="0"
Hoeneisen Standards Track [Page 18]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
maxOccurs="unbounded"/>
</sequence>
</complexType>
<!--
Data elements for inf
-->
<complexType name="infType">
<sequence>
<element ref="e164val:validationInfo"/>
</sequence>
<attribute name="id" type="eppcom:minTokenType"
use="required"/>
</complexType>
<!--
Global elements.
-->
<element name="validationInfo" type="e164val:ValidationInfoType" />
<!--
Extension framework types.
-->
<complexType name="ValidationInfoType">
<sequence>
<any namespace="##other"/>
</sequence>
</complexType>
<!--
End of schema.
-->
</schema>
END
Figure 6
Formal syntax for a simple validation (example):
BEGIN
<?xml version="1.0" encoding="UTF-8"?>
<schema targetNamespace="urn:ietf:params:xml:ns:e164valex-1.1"
xmlns:e164valex="urn:ietf:params:xml:ns:e164valex-1.1"
xmlns:eppcom="urn:ietf:params:xml:ns:eppcom-1.0"
xmlns="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified">
Hoeneisen Standards Track [Page 19]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
<!--
Import common element types.
-->
<import namespace="urn:ietf:params:xml:ns:eppcom-1.0"
schemaLocation="eppcom-1.0.xsd"/>
<annotation>
<documentation>
Example for E.164 number validation information.
</documentation>
</annotation>
<element name="simpleVal" type="e164valex:simpleValType"/>
<complexType name="simpleValType">
<sequence>
<element name="methodID" type="e164valex:methodIdType"/>
<element name="validationEntityID" type="eppcom:clIDType"
minOccurs="0"/>
<element name="registrarID" type="eppcom:clIDType"
minOccurs="0"/>
<element name="executionDate" type="date"/>
<element name="expirationDate" type="date"
minOccurs="0"/>
</sequence>
</complexType>
<simpleType name="methodIdType">
<restriction base="token">
<minLength value="1"/>
<maxLength value="63"/>
</restriction>
</simpleType>
<!--
End of schema.
-->
</schema>
END
Figure 7
Hoeneisen Standards Track [Page 20]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
7. IANA Considerations
This document uses Uniform Resource Names (URNs) to describe XML
namespaces and XML schemas conforming to the registry mechanism
described in RFC 3688 [8]. Four URI assignments have been made:
1. Registration for the extension namespace:
* URI: urn:ietf:params:xml:ns:e164val-1.0
* Registrant Contact: See the "Author's Address" section of this
document.
* XML: None. Namespace URIs do not represent an XML
specification.
2. Registration for the extension XML schema:
* URI: urn:ietf:params:xml:schema:e164val-1.0
* Registrant Contact: See the "Author's Address" section of this
document.
* XML: See Section 6, "Formal Syntax", of this document.
3. Registration for the extension namespace:
* URI: urn:ietf:params:xml:ns:e164valex-1.1
* Registrant Contact: See the "Author's Address" section of this
document.
* XML: None. Namespace URIs do not represent an XML
specification.
4. Registration for the extension XML schema:
* URI: urn:ietf:params:xml:schema:e164valex-1.1
* Registrant Contact: See the "Author's Address" section of this
document.
* XML: See Section 6, "Formal Syntax", of this document.
8. Security Considerations
The mapping extensions described in this document do not provide any
security services beyond those described by EPP [3], the EPP domain
name mapping [4], and protocol layers used by EPP. Security
considerations related to ENUM are described in the "Security
Considerations" section of the ENUM specification [2]. The security
considerations described in these other specifications apply to this
specification as well.
Validation information often contains sensitive personal information.
It is RECOMMENDED that validation information in the <info> response
is only provided to the sponsoring client.
Hoeneisen Standards Track [Page 21]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
9. Acknowledgements
The author would like to thank the following people who have provided
feedback or significant contributions to the development of this
document: Alfred Hoenes, Helena Malmborg, Alexander Mayrhofer, Andrew
Newton, Marcel Parodi, Patrik Schaefer, and Patrick Zenklusen.
RFC 4114 [11] has been used as a template for this document. The
structure and those paragraphs that apply to both documents have
been taken over from [11]. The author would like to thank Scott
Hollenbeck for this great spadework.
10. References
10.1. Normative References
[1] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", BCP 14, RFC 2119, March 1997.
[2] Faltstrom, P. and M. Mealling, "The E.164 to Uniform Resource
Identifiers (URI) Dynamic Delegation Discovery System (DDDS)
Application (ENUM)", RFC 3761, April 2004.
[3] Hollenbeck, S., "Extensible Provisioning Protocol (EPP)", RFC
3730, March 2004.
[4] Hollenbeck, S., "Extensible Provisioning Protocol (EPP) Domain
Name Mapping", RFC 3731, March 2004.
[5] Paoli, J., Maler, E., Bray, T., and C. Sperberg-McQueen,
"Extensible Markup Language (XML) 1.0 (Second Edition)", World
Wide Web Consortium FirstEdition REC-xml-20001006, October
2000, <http://www.w3.org/TR/2000/REC-xml-20001006>.
[6] Thompson, H., Maloney, M., Mendelsohn, N., and D. Beech, "XML
Schema Part 1: Structures Second Edition", World Wide Web
Consortium Recommendation REC-xmlschema-1-20041028, October
2004, <http://www.w3.org/TR/2004/REC-xmlschema-1-20041028>.
[7] Biron, P. and A. Malhotra, "XML Schema Part 2: Datatypes
Second Edition", World Wide Web Consortium Recommendation REC-
xmlschema-2-20041028, October 2004,
<http://www.w3.org/TR/2004/REC-xmlschema-2-20041028>.
[8] Mealling, M., "The IETF XML Registry", BCP 81, RFC 3688,
January 2004.
Hoeneisen Standards Track [Page 22]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
10.2. Informative References
[9] Mayrhofer, A. and B. Hoeneisen, "ENUM Validation
Architecture", RFC 4725, November 2006.
[10] Lendl, O., "ENUM Validation Token Format Definition", Work in
Progress.
[11] Hollenbeck, S., "E.164 Number Mapping for the Extensible
Provisioning Protocol (EPP)", RFC 4114, June 2005.
Author's Address
Bernie Hoeneisen
SWITCH
Werdstrasse 2
CH-8004 Zuerich
Switzerland
Phone: +41 44 268 1515
EMail: bernhard.hoeneisen@switch.ch, bernie@ietf.hoeneisen.ch
URI: http://www.switch.ch/
Hoeneisen Standards Track [Page 23]
^L
RFC 5076 ENUM Validation Mapping for EPP December 2007
Full Copyright Statement
Copyright (C) The IETF Trust (2007).
This document is subject to the rights, licenses and restrictions
contained in BCP 78, and except as set forth therein, the authors
retain all their rights.
This document and the information contained herein are provided on an
"AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS
OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY, THE IETF TRUST AND
THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF
THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Intellectual Property
The IETF takes no position regarding the validity or scope of any
Intellectual Property Rights or other rights that might be claimed to
pertain to the implementation or use of the technology described in
this document or the extent to which any license under such rights
might or might not be available; nor does it represent that it has
made any independent effort to identify any such rights. Information
on the procedures with respect to rights in RFC documents can be
found in BCP 78 and BCP 79.
Copies of IPR disclosures made to the IETF Secretariat and any
assurances of licenses to be made available, or the result of an
attempt made to obtain a general license or permission for the use of
such proprietary rights by implementers or users of this
specification can be obtained from the IETF on-line IPR repository at
http://www.ietf.org/ipr.
The IETF invites any interested party to bring to its attention any
copyrights, patents or patent applications, or other proprietary
rights that may cover technology that may be required to implement
this standard. Please address the information to the IETF at
ietf-ipr@ietf.org.
Hoeneisen Standards Track [Page 24]
^L
|