-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdraft-ietf-eppext-launchphase.txt
More file actions
2856 lines (1952 loc) · 94.1 KB
/
draft-ietf-eppext-launchphase.txt
File metadata and controls
2856 lines (1952 loc) · 94.1 KB
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
Internet Engineering Task Force J. Gould
Internet-Draft VeriSign, Inc.
Intended status: Standards Track W. Tan
Expires: July 21, 2014 Cloud Registry
G. Brown
CentralNic Ltd
January 17, 2014
Launch Phase Mapping for the Extensible Provisioning Protocol (EPP)
draft-ietf-eppext-launchphase-00
Abstract
This document describes an Extensible Provisioning Protocol (EPP)
extension mapping for the provisioning and management of domain name
registrations and applications during the launch of a domain name
registry.
Status of this Memo
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 July 21, 2014.
Copyright Notice
Copyright (c) 2014 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
Gould, et al. Expires July 21, 2014 [Page 1]
Internet-Draft Launch Phase Mapping for EPP January 2014
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . . 4
1.1. Conventions Used in This Document . . . . . . . . . . . . 4
2. Object Attributes . . . . . . . . . . . . . . . . . . . . . . 5
2.1. Application Identifier . . . . . . . . . . . . . . . . . . 5
2.2. Validator Identifier . . . . . . . . . . . . . . . . . . . 5
2.3. Launch Phases . . . . . . . . . . . . . . . . . . . . . . 6
2.4. Status Values . . . . . . . . . . . . . . . . . . . . . . 7
2.4.1. State Transition . . . . . . . . . . . . . . . . . . . 9
2.5. Poll Messaging . . . . . . . . . . . . . . . . . . . . . . 10
2.6. Mark Validation Models . . . . . . . . . . . . . . . . . . 13
2.6.1. <launch:codeMark> element . . . . . . . . . . . . . . 14
2.6.2. <mark:mark> element . . . . . . . . . . . . . . . . . 15
2.6.3. Digital Signature . . . . . . . . . . . . . . . . . . 15
2.6.3.1. <smd:signedMark> element . . . . . . . . . . . . . 15
2.6.3.2. <smd:encodedSignedMark> element . . . . . . . . . 15
3. EPP Command Mapping . . . . . . . . . . . . . . . . . . . . . 15
3.1. EPP <check> Command . . . . . . . . . . . . . . . . . . . 16
3.1.1. Claims Check Form . . . . . . . . . . . . . . . . . . 16
3.1.2. Availability Check Form . . . . . . . . . . . . . . . 18
3.2. EPP <info> Command . . . . . . . . . . . . . . . . . . . . 19
3.3. EPP <create> Command . . . . . . . . . . . . . . . . . . . 23
3.3.1. Sunrise Create Form . . . . . . . . . . . . . . . . . 23
3.3.2. Claims Create Form . . . . . . . . . . . . . . . . . . 29
3.3.3. General Create Form . . . . . . . . . . . . . . . . . 31
3.3.4. Mixed Create Form . . . . . . . . . . . . . . . . . . 32
3.3.5. Create Response . . . . . . . . . . . . . . . . . . . 34
3.4. EPP <update> Command . . . . . . . . . . . . . . . . . . . 35
3.5. EPP <delete> Command . . . . . . . . . . . . . . . . . . . 36
3.6. EPP <renew> Command . . . . . . . . . . . . . . . . . . . 37
3.7. EPP <transfer> Command . . . . . . . . . . . . . . . . . . 38
4. Formal Syntax . . . . . . . . . . . . . . . . . . . . . . . . 38
4.1. Launch Schema . . . . . . . . . . . . . . . . . . . . . . 38
5. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . 45
6. Change History . . . . . . . . . . . . . . . . . . . . . . . . 45
6.1. Change from 00 to 01 . . . . . . . . . . . . . . . . . . . 46
6.2. Change from 01 to 02 . . . . . . . . . . . . . . . . . . . 46
6.3. Change from 02 to 03 . . . . . . . . . . . . . . . . . . . 46
6.4. Change from 03 to 04 . . . . . . . . . . . . . . . . . . . 46
6.5. Change from 04 to 05 . . . . . . . . . . . . . . . . . . . 47
6.6. Change from 05 to 06 . . . . . . . . . . . . . . . . . . . 47
6.7. Change from 06 to 07 . . . . . . . . . . . . . . . . . . . 47
6.8. Change from 07 to 08 . . . . . . . . . . . . . . . . . . . 47
Gould, et al. Expires July 21, 2014 [Page 2]
Internet-Draft Launch Phase Mapping for EPP January 2014
6.9. Change from 08 to 09 . . . . . . . . . . . . . . . . . . . 48
6.10. Change from 09 to 10 . . . . . . . . . . . . . . . . . . . 48
6.11. Change from 10 to 11 . . . . . . . . . . . . . . . . . . . 49
6.12. Change from 11 to 12 . . . . . . . . . . . . . . . . . . . 49
6.13. Change from 12 to WG 00 . . . . . . . . . . . . . . . . . 49
7. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 50
8. Security Considerations . . . . . . . . . . . . . . . . . . . 50
9. Normative References . . . . . . . . . . . . . . . . . . . . . 50
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . . 51
Gould, et al. Expires July 21, 2014 [Page 3]
Internet-Draft Launch Phase Mapping for EPP January 2014
1. Introduction
This document describes an extension mapping for version 1.0 of the
Extensible Provisioning Protocol (EPP) [RFC5730]. This EPP mapping
specifies a flexible schema that can be used to implement several
common use cases related to the provisioning and management of domain
name registrations and applications during the launch of a domain
name registry.
It is typical for domain registries to operate in special modes
during their initial launch to facilitate allocation of domain names,
often according to special rules. This document uses the term
"launch phase" and the shorter form "launch" to refer to such a
period.
The EPP domain name mapping [RFC5731] is designed for the steady-
state operation of a registry. During a launch period, the model in
place may be different from what is defined in the EPP domain name
mapping [RFC5731]. For example, registries often accept multiple
applications for the same domain name during the "Sunrise" launch
phase, referred to as a Launch Application. A Launch Registration
refers to a registration made during a launch phase when the server
uses a "first-come, first-served" model. Even in a "first-come,
first-served" model, additional steps and information might be
required, such as trademark information. In addition, the TMCH
Functional Specification [1] defines a registry interface for the
Trademark Claims or "claims" launch phase that includes support for
presenting a Trademark Claims Notice to the Registrant. This
document proposes an extension to the domain name mapping in order to
provide a uniform interface for the management of Launch Applications
and Launch Registrations in launch phases.
1.1. Conventions Used in This Document
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.
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 a REQUIRED feature of this protocol.
Gould, et al. Expires July 21, 2014 [Page 4]
Internet-Draft Launch Phase Mapping for EPP January 2014
"launch-1.0" is used as an abbreviation for
"urn:ietf:params:xml:ns:launch-1.0". The XML namespace prefix
"launch" is used, but implementations MUST NOT depend on it and
instead employ a proper namespace-aware XML parser and serializer to
interpret and output the XML documents.
"signedMark-1.0" is used as an abbreviation for
"urn:ietf:params:xml:ns:signedMark-1.0" that is defined in
[draft-ietf-eppext-tmch-smd]. The XML namespace prefix "smd" is
used, but implementations MUST NOT depend on it and instead employ a
proper namespace-aware XML parser and serializer to interpret and
output the XML documents.
"mark-1.0" is used as an abbreviation for
"urn:ietf:params:xml:ns:mark-1.0" that is defined in
[draft-ietf-eppext-tmch-smd]. The XML namespace prefix "mark" is
used, but implementations MUST NOT depend on it and instead employ a
proper namespace-aware XML parser and serializer to interpret and
output the XML documents.
2. Object Attributes
This extension adds additional elements to the EPP domain name
mapping [RFC5731]. Only those new elements are described here.
2.1. Application Identifier
Servers MAY allow multiple applications, referred to as a Launch
Application, of the same domain name during its launch phase
operations. Upon receiving a valid request to create a Launch
Application, the server MUST create an application object
corresponding to the request, assign an application identifier for
the Launch Application, set the [RFC5731] pendingCreate status, and
return the application identifier to the client with the <launch:
applicationID> element. In order to facilitate correlation, all
subsequent launch operations on the Launch Application MUST be
qualified by the previously assigned application identifier using the
<launch:applicationID> element.
If the <domain:create> command processes a request synchronously
without the use of an intermediate Launch Application, then an
application identifier MAY not be needed.
2.2. Validator Identifier
The Validator Identifier is the unique identifier for a Trademark
Validator that validates marks and has a repository of validated
Gould, et al. Expires July 21, 2014 [Page 5]
Internet-Draft Launch Phase Mapping for EPP January 2014
marks. The OPTIONAL "validatorID" attribute is used to define the
Validator Identifier of the Trademark Validator. Registries MAY
support more than one Third Party Trademark Validator. The Internet
Corporation for Assigned Names and Numbers (ICANN) Trademark
Clearinghouse (TMCH) is the default Trademark Validator and is
reserved the Validator Identifier of "tmch". If the ICANN TMCH is
not used or multiple Trademark Validators are used, the Validator
Identifier MUST be defined using the "validatorID" attribute.
The Validator Identifier MAY be related to one or more issuer
identifiers of the <mark:id> element and the <smd:id> element defined
in [draft-ietf-eppext-tmch-smd]. Both the Validator Identifier and
the Issuer Identifier used MUST be unique. The list of validator
identifiers and the relationship to issuer identifiers is out of
scope for this document.
2.3. Launch Phases
The server MAY support multiple launch phases sequentially or
simultaneously. The <launch:phase> element MUST be included by the
client to define the target launch phase of the command. The server
SHOULD validate the phase and MAY validate the sub-phase of the
<launch:phase> element against the active phase and OPTIONAL sub-
phase of the server on a create command, and return an EPP error
result code of 2306 if there is a mismatch.
The following launch phase values are defined:
sunrise The phase during which trademark holders can submit
registrations or applications with trademark information that can
be validated by the server.
landrush A post-Sunrise phase when non-trademark holders are allowed
to register domain names with steps taken to address a large
volume of initial registrations.
claims The Trademark Claims phase, as defined in the TMCH Functional
Specification [2], in which a Claims Notice must be displayed to a
prospective registrant of a domain name that matches trademarks.
open A post-launch phase that is also referred to as "steady state".
Servers MAY require additional trademark protection during this
phase.
custom A custom server launch phase that is defined using the "name"
attribute.
For extensibility, the <launch:phase> element includes an OPTIONAL
"name" attribute that can define a sub-phase or the full name of the
phase when the <launch:phase> element has the "custom" value. For
example, the "claims" launch phase could have two sub-phases that
include "landrush" and "open".
Gould, et al. Expires July 21, 2014 [Page 6]
Internet-Draft Launch Phase Mapping for EPP January 2014
Launch phases MAY overlap to support the "claims" launch phase,
defined in the TMCH Functional Specification [2], and to support a
traditional "landrush" launch phase. The overlap of the "claims" and
"landrush" launch phases SHOULD be handled by setting "claims" as the
<launch:phase> value and setting "landrush" as the sub-phase with the
"name" attribute. For example, the <launch:phase> element SHOULD be
<launch:phase name="landrush">claims</launch:phase>.
2.4. Status Values
A Launch Application or Launch Registration object MAY have a launch
status value. The <launch:status> element is used to convey the
launch status pertaining to the object, beyond what is specified in
the object mapping. A Launch Application or Launch Registration MUST
set the [RFC5731] "pendingCreate" status if a launch status is
supported and the launch status is not one of the final statuses,
including the "allocated" and "rejected" statuses.
The following status values are defined using the required "s"
attribute:
pendingValidation: The initial state of a newly-created application
or registration object. The application or registration requires
validation, but the validation process has not yet completed.
validated: The application or registration meets relevant registry
rules.
invalid: The application or registration does not validate according
to registry rules. Server policies permitting, it may transition
back into "pendingValidation" for revalidation, after
modifications are made to ostensibly correct attributes that
caused the validation failure.
pendingAllocation: The allocation of the application or registration
is pending based on the results of some out-of-band process (for
example, an auction).
allocated: The object corresponding to the application or
registration has been provisioned. Is a possible end state of an
application or registration object.
rejected: The application or registration object was not
provisioned. Is a possible end state of an application or
registration object.
custom: A custom status that is defined using the "name" attribute.
Each status value MAY be accompanied by a string of human-readable
text that describes the rationale for the status applied to the
object. The OPTIONAL "lang" attribute MAY be present to identify the
language if the negotiated value is something other than the default
value of "en" (English).
For extensibility the <launch:status> element includes an OPTIONAL
Gould, et al. Expires July 21, 2014 [Page 7]
Internet-Draft Launch Phase Mapping for EPP January 2014
"name" attribute that can define a sub-status or the full name of the
status when the status value is "custom". The server SHOULD NOT use
the "custom" status value.
Certain status values MAY be combined. For example, an application
or registration may be both "invalid" and "rejected". Additionally,
certain statuses MAY be skipped. For example, an application or
registration MAY immediately start at the "allocated" status or an
application or registration MAY skip the "pendingAllocation" status.
If the launch phase does not require validation of a request, an
application or registration MAY immediately skip to
"pendingAllocation".
Gould, et al. Expires July 21, 2014 [Page 8]
Internet-Draft Launch Phase Mapping for EPP January 2014
2.4.1. State Transition
| request
|
| +--------------------------+
| | |
v v |
+-------------------+ |
| | |
| pendingValidation +--------------+ |
| | | |
+---------+---------+ | |
| | |
| | |
v v |
+-----------+ +---------+ |
| | | | |
| validated | | invalid +--+
| | | |
+-----+-----+ +----+----+
| |
| |
v |
+-------------------+ |
| | |
| pendingAllocation +-----------+ |
| | | |
+---------+---------+ | |
| | |
| | |
| | |
| | |
| | |
v v v
+---------+ +--------+
/ \ / \
| allocated | | rejected |
\ / \ /
+---------+ +--------+
Figure 1
Gould, et al. Expires July 21, 2014 [Page 9]
Internet-Draft Launch Phase Mapping for EPP January 2014
2.5. Poll Messaging
A Launch Application MUST and a Launch Registration MAY be handled as
a domain name of [RFC5731] in "pendingCreate" status, with the launch
status values defined in Section 2.4. As a Launch Application or
Launch Registration transitions between the status values defined in
Section 2.4, the server SHOULD insert poll messages, per [RFC5730],
for the applicable intermediate statuses, including the
"pendingValidation", "validated", "pendingAllocation, and "invalid"
statuses, using the <domain:infData> element with the <launch:
infData> extension. The <domain:infData> element MAY contain non-
mandatory information, like contact and name server information.
Also, further extensions that would normally be included in the
response of a <domain:info> command, per [RFC5731], MAY be included.
For the final statuses, including the "allocated" and "rejected"
statuses, the server MUST insert a <domain:panData> poll message, per
[RFC5731], with the <launch:infData> extension.
Gould, et al. Expires July 21, 2014 [Page 10]
Internet-Draft Launch Phase Mapping for EPP January 2014
The following is an example poll message for a Launch Application
that has transitioned to the "pendingAllocation" state.
S:<?xml version="1.0" encoding="UTF-8" standalone="no"?>
S:<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
S: <response>
S: <result code="1301">
S: <msg>Command completed successfully; ack to dequeue</msg>
S: </result>
S: <msgQ count="5" id="12345">
S: <qDate>2013-04-04T22:01:00.0Z</qDate>
S: <msg>Application pendingAllocation.</msg>
S: </msgQ>
S: <resData>
S: <domain:infData
S: xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
S: <domain:name>example.tld</domain:name>
S: ...
S: </domain:infData>
S: </resData>
S: <extension>
S: <launch:infData
S: xmlns:launch="urn:ietf:params:xml:ns:launch-1.0">
S: <launch:phase>sunrise</launch:phase>
S: <launch:applicationID>abc123</launch:applicationID>
S: <launch:status s="pendingAllocation"/>
S: </launch:infData>
S: </extension>
S: <trID>
S: <clTRID>ABC-12345</clTRID>
S: <svTRID>54322-XYZ</svTRID>
S: </trID>
S: </response>
S:</epp>
Gould, et al. Expires July 21, 2014 [Page 11]
Internet-Draft Launch Phase Mapping for EPP January 2014
The following is an example <domain:panData> poll message for an
"allocated" Launch Application.
S:<?xml version="1.0" encoding="UTF-8" standalone="no"?>
S:<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
S: <response>
S: <result code="1301">
S: <msg>Command completed successfully; ack to dequeue</msg>
S: </result>
S: <msgQ count="5" id="12345">
S: <qDate>2013-04-04T22:01:00.0Z</qDate>
S: <msg>Application successfully allocated.</msg>
S: </msgQ>
S: <resData>
S: <domain:panData
S: xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
S: <domain:name paResult="1">example.tld</domain:name>
S: <domain:paTRID>
S: <clTRID>ABC-12345</clTRID>
S: <svTRID>54321-XYZ</svTRID>
S: </domain:paTRID>
S: <domain:paDate>2013-04-04T22:00:00.0Z</domain:paDate>
S: </domain:panData>
S: </resData>
S: <extension>
S: <launch:infData
S: xmlns:launch="urn:ietf:params:xml:ns:launch-1.0">
S: <launch:phase>sunrise</launch:phase>
S: <launch:applicationID>abc123</launch:applicationID>
S: <launch:status s="allocated"/>
S: </launch:infData>
S: </extension>
S: <trID>
S: <clTRID>BCD-23456</clTRID>
S: <svTRID>65432-WXY</svTRID>
S: </trID>
S: </response>
S:</epp>
Gould, et al. Expires July 21, 2014 [Page 12]
Internet-Draft Launch Phase Mapping for EPP January 2014
The following is an example <domain:panData> poll message for an
"allocated" Launch Registration.
S:<?xml version="1.0" encoding="UTF-8" standalone="no"?>
S:<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
S: <response>
S: <result code="1301">
S: <msg>Command completed successfully; ack to dequeue</msg>
S: </result>
S: <msgQ count="5" id="12345">
S: <qDate>2013-04-04T22:01:00.0Z</qDate>
S: <msg>Registration successfully allocated.</msg>
S: </msgQ>
S: <resData>
S: <domain:panData
S: xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
S: <domain:name paResult="1">example.tld</domain:name>
S: <domain:paTRID>
S: <clTRID>ABC-12345</clTRID>
S: <svTRID>54321-XYZ</svTRID>
S: </domain:paTRID>
S: <domain:paDate>2013-04-04T22:00:00.0Z</domain:paDate>
S: </domain:panData>
S: </resData>
S: <extension>
S: <launch:infData
S: xmlns:launch="urn:ietf:params:xml:ns:launch-1.0">
S: <launch:phase>sunrise</launch:phase>
S: <launch:status s="allocated"/>
S: </launch:infData>
S: </extension>
S: <trID>
S: <clTRID>BCD-23456</clTRID>
S: <svTRID>65432-WXY</svTRID>
S: </trID>
S: </response>
S:</epp>
2.6. Mark Validation Models
A server MUST support at least one of the following models for
validating trademark information:
code Use of a mark code by itself to validate that the mark matches
the domain name. This model is supported using the <launch:
codeMark> element with just the <launch:code> element.
Gould, et al. Expires July 21, 2014 [Page 13]
Internet-Draft Launch Phase Mapping for EPP January 2014
mark The mark information is passed without any other validation
element. The server will use some custom form of validation to
validate that the mark information is authentic. This model is
supported using the <launch:codeMark> element with just the <mark:
mark> (Section 2.6.2) element.
code with mark: A code is used along with the mark information by
the server to validate the mark utilizing an external party. The
code represents some form of secret that matches the mark
information passed. This model is supported using the <launch:
codeMark> element that contains both the <launch:code> and the
<mark:mark> (Section 2.6.2) elements.
signed mark: The mark information is digitally signed as described
in the Digital Signature (Section 2.6.3) section. The digital
signature can be directly validated by the server using the public
key of the external party that created the signed mark using its
private key. This model is supported using the <smd:signedMark>
(Section 2.6.3.1) and <smd:encodedSignedMark> (Section 2.6.3.2)
elements.
More than one <launch:codeMark>, <smd:signedMark> (Section 2.6.3.1),
or <smd:encodedSignedMark> (Section 2.6.3.2) element MAY be
specified. The maximum number of marks per domain name is up to
server policy.
2.6.1. <launch:codeMark> element
The <launch:codeMark> element that is used by the "code", "mark", and
"code with mark" validation models, has the following child elements:
<launch:code>: OPTIONAL mark code used to validate the <mark:mark>
(Section 2.6.2) information. The mark code is be a mark-specific
secret that the server can verify against a third party. The
OPTIONAL "validatorID" attribute is the Validator Identifier
(Section 2.2) whose value indicates which Trademark Validator that
the code originated from, with no default value.
<mark:mark>: OPTIONAL mark information with child elements defined
in the Mark (Section 2.6.2) section.
The following is an example <launch:codeMark> element with both a
<launch:code> and <mark:mark> (Section 2.6.2) element.
<launch:codeMark>
<launch:code validatorID="sample">
49FD46E6C4B45C55D4AC</launch:code>
<mark:mark xmlns:mark="urn:ietf:params:xml:ns:mark-1.0">
...
</mark:mark>
</launch:codeMark>
Gould, et al. Expires July 21, 2014 [Page 14]
Internet-Draft Launch Phase Mapping for EPP January 2014
2.6.2. <mark:mark> element
A <mark:mark> element describes an applicant's prior right to a given
domain name that is used with the "mark", "mark with code", and the
"signed mark" validation models. The <mark:mark> element is defined
in [draft-ietf-eppext-tmch-smd]. A new mark format can be supported
by creating a new XML schema for the mark that has an element that
substitutes for the <mark:abstractMark> element from
[draft-ietf-eppext-tmch-smd].
2.6.3. Digital Signature
Digital signatures MAY be used by the server to validate either the
mark information, when using the "signed mark" validation model with
the <smd:signedMark> (Section 2.6.3.1) element or the <smd:
encodedSignedMark> (Section 2.6.3.2) element.
2.6.3.1. <smd:signedMark> element
The <smd:signedMark> element contains the digitally signed mark
information. The <smd:signedMark> element is defined in
[draft-ietf-eppext-tmch-smd]. A new signed mark format can be
supported by creating a new XML schema for the signed mark that has
an element that substitutes for the <smd:abstractSignedMark> element
from [draft-ietf-eppext-tmch-smd].
2.6.3.2. <smd:encodedSignedMark> element
The <smd:encodedSignedMark> element contains an encoded form of the
digitally signed <smd:signedMark> (Section 2.6.3.1) element. The
<smd:encodedSignedMark> element is defined in
[draft-ietf-eppext-tmch-smd]. A new encoded signed mark format can
be supported by creating a new XML schema for the encoded signed mark
that has an element that substitutes for the <smd:encodedSignedMark>
element from [draft-ietf-eppext-tmch-smd].
3. EPP Command Mapping
A detailed description of the EPP syntax and semantics can be found
in the EPP core protocol specification [RFC5730]. The command
mappings described here are specifically for use in the Launch Phase
Extension.
This mapping is designed to be flexible, requiring only a minimum set
of required elements.
While it is meant to serve several use cases, it does not prescribe
Gould, et al. Expires July 21, 2014 [Page 15]
Internet-Draft Launch Phase Mapping for EPP January 2014
any interpretation by the client or server. Such processing is
typically highly policy-dependent and therefore specific to
implementations.
Operations on application objects are done via one or more of the
existing EPP verbs defined in the EPP domain name mapping [RFC5731].
Registries MAY choose to support a subset of the operations.
3.1. EPP <check> Command
There are two forms of the extension to the EPP <check> command: the
Claims Check Form (Section 3.1.1) and the Availability Check Form
(Section 3.1.2). The <launch:check> element "type" attribute defines
the form, with the value of "claims" for the Claims Check Form
(Section 3.1.1) and with the value of "avail" for the Availability
Check Form (Section 3.1.2). The default value of the "type"
attribute is "claims". The forms supported by the server is
determined by server policy. The server MUST return an EPP error
result code of 2307 if it receives a check form that is not
supported.
3.1.1. Claims Check Form
The Claims Check Form defines a new command called the Claims Check
Command that is used to determine whether or not there are any
matching trademarks, in the specified launch phase, for each domain
name passed in the command. The availability check information
defined in the EPP domain name mapping [RFC5731] MUST NOT be returned
for the Claims Check Command. This form is the default form and MAY
be explicitly identified by setting the <launch:check> "type"
attribute to "claims".
Instead of returning whether the domain name is available, the Claims
Check Command will return whether or not at least one matching
trademark exists for the domain name. If there is at least one
matching trademark that exists for the domain name, a <launch:
claimKey> element is returned. The client MAY then use the value of
the <launch:claimKey> element to obtain information needed to
generate the Trademark Claims Notice from Trademark Validator based
on the Validator Identifier (Section 2.2). The unique notice
identifier of the Trademark Claims Notice MUST be passed in the
<launch:noticeID> element of the extension to the Create Command
(Section 3.3).
The <domain:name> elements in the EPP <check> command of EPP domain
name mapping [RFC5731] define the domain names to check for matching
trademarks. The <launch:check> element contains the following child
elements:
Gould, et al. Expires July 21, 2014 [Page 16]
Internet-Draft Launch Phase Mapping for EPP January 2014
<launch:phase> The launch phase that SHOULD be "claims".
Example Claims Check command using the <check> domain command and the
<launch:check> extension with the "type" explicitly set to "claims",
to determine if "example1.tld" and "example2.tld" have any matching
trademarks during the "claims" launch phase:
C:<?xml version="1.0" encoding="UTF-8" standalone="no"?>
C:<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
C: <command>
C: <check>
C: <domain:check
C: xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
C: <domain:name>example1.tld</domain:name>
C: <domain:name>example2.tld</domain:name>
C: </domain:check>
C: </check>
C: <extension>
C: <launch:check
C: xmlns:launch="urn:ietf:params:xml:ns:launch-1.0"
C: type="claims">
C: <launch:phase>claims</launch:phase>
C: </launch:check>
C: </extension>
C: <clTRID>ABC-12345</clTRID>
C: </command>
C:</epp>
If the <check> command has been processed successfully, the EPP
<response> MUST contain an <extension> <launch:chkData> element that
identifies the launch namespace. The <launch:chkData> element
contains the following child elements:
<launch:phase> The launch phase that SHOULD be "claims".
<launch:cd> One or more <launch:cd> elements that contain the
following child elements:
<launch:name> Contains the fully qualified name of the queried
domain name. This element MUST contain an "exists" attribute
whose value indicates if a matching trademark exists for the
domain name. A value of "1" (or "true") means that a
matching trademark does exist for the claims launch phase. A
value of "0" (or "false") means that a matching trademark
does not exist.
Gould, et al. Expires July 21, 2014 [Page 17]
Internet-Draft Launch Phase Mapping for EPP January 2014
<launch:claimKey> An OPTIONAL claim key that MAY be passed to a
third-party trademark validator such as the Trademark
Clearinghouse (TMCH) for querying the information needed to
generate a Trademark Claims Notice. The <launch:claimKey> is
used as the key for the query in place of the domain name to
securely query the service without using a well-known value
like a domain name. The OPTIONAL "validatorID" attribute is
the Validator Identifier (Section 2.2) whose value indicates
which Trademark Validator to query for the Claims Notice
information, with the default being the ICANN TMCH.
Example Claims Check response when no matching trademarks are found
for the domain name example1.tld and matching trademarks are found
for the domain name example2.tld for the "claims" launch phase:
S:<?xml version="1.0" encoding="UTF-8" standalone="no"?>
S:<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
S: <response>
S: <result code="1000">
S: <msg>Command completed successfully</msg>
S: </result>
S: <extension>
S: <launch:chkData
S: xmlns:launch="urn:ietf:params:xml:ns:launch-1.0">
S: <launch:phase>claims</launch:phase>
S: <launch:cd>
S: <launch:name exists="0">example1.tld</launch:name>
S: </launch:cd>
S: <launch:cd>
S: <launch:name exists="1">example2.tld</launch:name>
S: <launch:claimKey validatorID="tmch">
S: 2013041500/2/6/9/rJ1NrDO92vDsAzf7EQzgjX4R0000000001
S: </launch:claimKey>
S: </launch:cd>
S: </launch:chkData>
S: </extension>
S: <trID>
S: <clTRID>ABC-12345</clTRID>
S: <svTRID>54321-XYZ</svTRID>
S: </trID>
S: </response>
S:</epp>
3.1.2. Availability Check Form