-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdraft-ietf-eppext-launchphase.xml
2306 lines (2025 loc) · 99.5 KB
/
draft-ietf-eppext-launchphase.xml
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
<?xml version="1.0" encoding="US-ASCII"?>
<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
<!-- One method to get references from the online citation libraries.
There has to be one entity for each item to be referenced.
An alternate method (rfc include) is described in the references. -->
<!ENTITY RFC2119 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.2119.xml">
<!ENTITY RFC5730 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.5730.xml">
<!ENTITY RFC5731 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.5731.xml">
<!ENTITY RFC3688 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.3688.xml">
<!ENTITY I-D.narten-iana-considerations-rfc2434bis SYSTEM "http://xml.resource.org/public/rfc/bibxml3/reference.I-D.narten-iana-considerations-rfc2434bis.xml">
]>
<?xml-stylesheet type='text/xsl' href='rfc2629.xslt' ?>
<!-- used by XSLT processors -->
<!-- For a complete list and description of processing instructions (PIs),
please see http://xml.resource.org/authoring/README.html. -->
<!-- Below are generally applicable Processing Instructions (PIs) that most I-Ds might want to use.
(Here they are set differently than their defaults in xml2rfc v1.32) -->
<?rfc strict="yes" ?>
<!-- give errors regarding ID-nits and DTD validation -->
<!-- control the table of contents (ToC) -->
<?rfc toc="yes"?>
<!-- generate a ToC -->
<?rfc tocdepth="4"?>
<!-- the number of levels of subsections in ToC. default: 3 -->
<!-- control references -->
<?rfc symrefs="yes"?>
<!-- use symbolic references tags, i.e, [RFC2119] instead of [1] -->
<?rfc sortrefs="yes" ?>
<!-- sort the reference entries alphabetically -->
<!-- control vertical white space
(using these PIs as follows is recommended by the RFC Editor) -->
<?rfc compact="yes" ?>
<!-- do not start each main section on a new page -->
<?rfc subcompact="yes"?>
<!-- keep one blank line between list items -->
<?rfc comments="yes" ?>
<!-- show cref output -->
<?rfc inline="yes" ?>
<!-- inline cref output -->
<!-- end of list of popular I-D processing instructions -->
<rfc category="std" docName="draft-ietf-eppext-launchphase-00" ipr="trust200902">
<!-- category values: std, bcp, info, exp, and historic
ipr values: full3667, noModification3667, noDerivatives3667
you can add the attributes updates="NNNN" and obsoletes="NNNN"
they will automatically be output with "(if approved)" -->
<!-- ***** FRONT MATTER ***** -->
<front>
<title abbrev="Launch Phase Mapping for EPP">Launch Phase Mapping for the
Extensible Provisioning Protocol (EPP)</title>
<!-- add 'role="editor"' below for the editors if appropriate -->
<!-- Another author who claims to be an editor -->
<author fullname="James Gould" initials="J.G" surname="Gould">
<organization>VeriSign, Inc.</organization>
<address>
<postal>
<street>12061 Bluemont Way</street>
<city>Reston</city>
<region>VA</region>
<code>20190</code>
<country>US</country>
</postal>
<email>[email protected]</email>
<uri>http://www.verisigninc.com</uri>
</address>
</author>
<author fullname="Wil Tan" initials="W.T." surname="Tan">
<organization>Cloud Registry</organization>
<address>
<postal>
<street>Suite 32 Seabridge House</street>
<street>377 Kent St</street>
<city>Sydney</city>
<region>NSW</region>
<code>2000</code>
<country>AU</country>
</postal>
<phone>+61 414 710899</phone>
<email>[email protected]</email>
<uri>http://www.cloudregistry.net</uri>
</address>
</author>
<author fullname="Gavin Brown" initials="G.B." surname="Brown">
<organization>CentralNic Ltd</organization>
<address>
<postal>
<street>35-39 Mooregate</street>
<city>London</city>
<region>England</region>
<code>EC2R 6AR</code>
<country>GB</country>
</postal>
<phone>+44 20 33 88 0600</phone>
<email>[email protected]</email>
<uri>https://www.centralnic.com</uri>
</address>
</author>
<date day="17" month="January" year="2014"/>
<!-- Meta-data Declarations -->
<area>Applications</area>
<workgroup>Internet Engineering Task Force</workgroup>
<keyword>EPP, Sunrise, Landrush, Trademark Clearinghouse, Trademark
Claims, domain name registry, launch phase</keyword>
<abstract>
<t>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.</t>
</abstract>
</front>
<middle>
<section title="Introduction">
<t>This document describes an extension mapping for version 1.0 of the
<xref target="RFC5730">Extensible Provisioning Protocol (EPP)</xref>.
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.</t>
<t>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.</t>
<t>The <xref target="RFC5731">EPP domain name mapping</xref> 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 <xref target="RFC5731">EPP domain name mapping</xref>. 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 <eref
target="http://tools.ietf.org/html/draft-ietf-eppext-tmch-smd">TMCH Functional Specification</eref>
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.</t>
<section title="Conventions Used in This Document">
<t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in <xref
target="RFC2119">RFC 2119</xref>.</t>
<t>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.</t>
<t>In examples, "C:" represents lines sent by a protocol client and "S:" represents lines returned by a protocol server.
Indentation and white space in examples are provided only to illustrate element relationships
and are not a REQUIRED feature of this protocol.
</t>
<t>"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.</t>
<t>"signedMark-1.0" is used as an abbreviation for
"urn:ietf:params:xml:ns:signedMark-1.0" that is defined in <xref target="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.</t>
<t>"mark-1.0" is used as an abbreviation for
"urn:ietf:params:xml:ns:mark-1.0" that is defined in <xref target="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.</t>
</section>
</section>
<section anchor="attrs" title="Object Attributes">
<t>This extension adds additional elements to the <xref
target="RFC5731">EPP domain name mapping</xref>. Only those new elements
are described here.</t>
<section anchor="applicationID" title="Application Identifier">
<t>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 <xref target="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.</t>
<t>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.</t>
</section>
<section anchor="validatorID" title="Validator Identifier">
<t>The Validator Identifier is the unique identifier for a Trademark Validator that validates marks and has a repository of validated 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.</t>
<t>The Validator Identifier MAY be related to one or more issuer identifiers of the <mark:id> element
and the <smd:id> element defined in <xref target="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.</t>
</section>
<section anchor="phases" title="Launch Phases">
<t>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.</t>
<t>The following launch phase values are defined: <list
style="hanging">
<t hangText="sunrise">The phase during which trademark holders can submit
registrations or applications with trademark information that can be
validated by the server.</t>
<t hangText="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.</t>
<t hangText="claims">The Trademark Claims phase, as defined in the
<eref
target="http://tools.ietf.org/html/draft-lozano-tmch-func-spec">TMCH Functional Specification</eref>, in which a
Claims Notice must be displayed to a prospective registrant of a domain
name that matches trademarks.</t>
<t hangText="open">A post-launch phase that is also referred to as
"steady state". Servers MAY require additional trademark
protection during this phase.</t>
<t hangText="custom">A custom server launch phase that is defined
using the "name" attribute.</t>
</list></t>
<t>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".</t>
<t>Launch phases MAY overlap to support the "claims" launch phase, defined in the <eref
target="http://tools.ietf.org/html/draft-lozano-tmch-func-spec">TMCH Functional Specification</eref>, 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>.
</t>
</section>
<section anchor="statuses" title="Status Values">
<t>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 <xref target="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.</t>
<t>The following status values are defined using the
required "s" attribute: <list style="hanging">
<t hangText="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.</t>
<t hangText="validated:">The application or registration meets relevant registry
rules.</t>
<t hangText="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.
</t>
<t hangText="pendingAllocation:">The allocation of the application or registration
is pending based on the results of some out-of-band process (for example,
an auction).</t>
<t hangText="allocated:">The object corresponding to the application or registration
has been provisioned. Is a possible end state of an
application or registration object.</t>
<t hangText="rejected:">The application or registration object
was not provisioned. Is a possible end state of an
application or registration object.</t>
<t hangText="custom:">A custom status that is defined using the
"name" attribute.</t>
</list></t>
<t>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).</t>
<t>For extensibility the <launch:status> element includes an
OPTIONAL "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.</t>
<t>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".</t>
<section title="State Transition">
<figure align="center" anchor="fsm">
<artwork align="left"><![CDATA[
| request
|
| +--------------------------+
| | |
v v |
+-------------------+ |
| | |
| pendingValidation +--------------+ |
| | | |
+---------+---------+ | |
| | |
| | |
v v |
+-----------+ +---------+ |
| | | | |
| validated | | invalid +--+
| | | |
+-----+-----+ +----+----+
| |
| |
v |
+-------------------+ |
| | |
| pendingAllocation +-----------+ |
| | | |
+---------+---------+ | |
| | |
| | |
| | |
| | |
| | |
v v v
+---------+ +--------+
/ \ / \
| allocated | | rejected |
\ / \ /
+---------+ +--------+
]]></artwork>
</figure>
</section>
</section>
<section anchor="pollMessaging" title="Poll Messaging">
<t>A Launch Application MUST and a Launch Registration MAY be handled as a domain name of <xref target="RFC5731"/>
in "pendingCreate" status, with the launch status values defined in <xref target="statuses"/>.
As a Launch Application or Launch Registration transitions between the status values
defined in <xref target="statuses"/>, the server SHOULD insert poll messages, per <xref target="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 <xref target="RFC5731"/>, MAY be included. For the final statuses, including the
"allocated" and "rejected" statuses, the server MUST insert a <domain:panData> poll message, per <xref target="RFC5731"/>,
with the <launch:infData> extension.</t>
<figure>
<preamble>The following is an example poll message for a Launch Application
that has transitioned to the "pendingAllocation" state.</preamble>
<artwork><![CDATA[
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>]]></artwork>
</figure>
<figure>
<preamble>The following is an example <domain:panData> poll message for
an "allocated" Launch Application.</preamble>
<artwork><![CDATA[
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>]]></artwork>
</figure>
<figure>
<preamble>The following is an example <domain:panData> poll message for
an "allocated" Launch Registration.</preamble>
<artwork><![CDATA[
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>]]></artwork>
</figure>
</section>
<section anchor="validationModels" title="Mark Validation Models">
<t>A server MUST support at least one of the following models for validating
trademark information:</t>
<t><list style="hanging">
<t hangText="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.</t>
<t hangText="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 <xref target="mark"><mark:mark></xref> element.</t>
<t hangText="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 <xref target="mark"><mark:mark></xref> elements.</t>
<t hangText="signed mark:">The mark information is digitally
signed as described in the <xref target="digitalsignature">Digital Signature</xref>
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
<xref target="signedMark"><smd:signedMark></xref> and
<xref target="encodedSignedMark"><smd:encodedSignedMark></xref>
elements.</t>
</list></t>
<t>More than one <launch:codeMark>, <xref target="signedMark"><smd:signedMark></xref>,
or <xref target="encodedSignedMark"><smd:encodedSignedMark></xref> element MAY be specified. The maximum
number of marks per domain name is up to server policy.</t>
<section anchor="codeMark" title="<launch:codeMark> element">
<t>The <launch:codeMark> element that is used by the "code", "mark",
and "code with mark" validation models, has the following child
elements:</t>
<t><list style="hanging">
<t hangText="<launch:code>:">OPTIONAL mark code used to
validate the <xref target="mark"><mark:mark></xref> 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 <xref target="validatorID">Validator Identifier</xref>
whose value indicates which Trademark Validator that the code originated from, with no default value.</t>
<t hangText="<mark:mark>:">OPTIONAL mark information
with child elements defined in the <xref target="mark">Mark</xref>
section.</t>
</list></t>
<figure>
<preamble>The following is an example <launch:codeMark>
element with both a <launch:code> and <xref target="mark"><mark:mark></xref> element.
</preamble>
<artwork><![CDATA[
<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>]]></artwork>
</figure>
</section>
<section anchor="mark" title="<mark:mark> element">
<t>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 <xref target="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 <xref target="draft-ietf-eppext-tmch-smd"/>.</t>
</section>
<section anchor="digitalsignature" title="Digital Signature">
<t>Digital signatures MAY be used by the server to validate either
the mark information, when using the "signed mark" validation model with the
<xref target="signedMark"><smd:signedMark></xref> element or the <xref target="encodedSignedMark"><smd:encodedSignedMark></xref> element.
</t>
<section anchor="signedMark" title="<smd:signedMark> element">
<t>The <smd:signedMark> element contains the digitally signed mark information. The <smd:signedMark>
element is defined in <xref target="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 <xref target="draft-ietf-eppext-tmch-smd"/>.
</t>
</section>
<section anchor="encodedSignedMark" title="<smd:encodedSignedMark> element">
<t>The <smd:encodedSignedMark> element contains an encoded form of
the digitally signed <xref target="signedMark"><smd:signedMark></xref> element. The
<smd:encodedSignedMark> element is defined in <xref target="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 <xref target="draft-ietf-eppext-tmch-smd"/>.
</t>
</section>
</section>
</section>
</section>
<section anchor="commands" title="EPP Command Mapping">
<t>A detailed description of the EPP syntax and semantics can be found
in the EPP core protocol specification <xref target="RFC5730"/>. The
command mappings described here are specifically for use in the Launch
Phase Extension.</t>
<t>This mapping is designed to be flexible, requiring only a minimum set
of required elements.</t>
<t>While it is meant to serve several use cases, it does not prescribe
any interpretation by the client or server. Such processing is typically
highly policy-dependent and therefore specific to implementations.</t>
<t>Operations on application objects are done via one or more of the
existing EPP verbs defined in the <xref target="RFC5731">EPP domain name
mapping</xref>. Registries MAY choose to support a subset of the
operations.</t>
<section anchor="checkCommand" title="EPP <check> Command">
<t>There are two forms of the extension to the EPP <check> command:
the <xref target="claimsCheckForm">Claims Check Form</xref>
and the <xref target="availCheckForm">Availability Check Form</xref>. The
<launch:check> element "type" attribute defines the form,
with the value of "claims" for the <xref target="claimsCheckForm">Claims Check Form</xref>
and with the value of "avail" for the <xref target="availCheckForm">Availability Check Form</xref>.
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.</t>
<section anchor="claimsCheckForm" title="Claims Check Form">
<t>
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 <xref target="RFC5731">EPP domain name
mapping</xref> 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".</t>
<t>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 <xref target="validatorID">Validator Identifier</xref>. The
unique notice identifier of the Trademark Claims Notice MUST be passed in
the <launch:noticeID> element of the extension to the
<xref target="createCommand">Create Command</xref>.</t>
<t>The <domain:name> elements in the EPP <check>
command of <xref target="RFC5731">EPP domain name mapping</xref> define
the domain names to check for matching trademarks.
The <launch:check> element contains the following child elements:</t>
<t><list hangIndent="4" style="hanging">
<t hangText="<launch:phase>">The launch phase that SHOULD be
"claims".</t>
</list></t>
<figure>
<preamble>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:</preamble>
<artwork><![CDATA[
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>]]></artwork>
</figure>
<t>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:</t>
<t><list hangIndent="4" style="hanging">
<t hangText="<launch:phase>">The launch phase that SHOULD be
"claims".</t>
<t hangText="<launch:cd>">One or more <launch:cd>
elements that contain the following child elements:</t>
<t><list hangIndent="4" style="hanging">
<t hangText="<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.</t>
<t hangText="<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 <xref target="validatorID">Validator Identifier</xref>
whose value indicates which Trademark Validator to query for the Claims Notice information, with
the default being the ICANN TMCH.</t>
</list></t>
</list></t>
<figure>
<preamble>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:</preamble>
<artwork><![CDATA[
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>]]></artwork>
</figure>
</section>
<section anchor="availCheckForm" title="Availability Check Form">
<t>The Availability Check Form defines additional elements to extend the EPP
<check> command described in the
<xref target="RFC5731">EPP domain name mapping</xref>. No additional
elements are defined for the EPP <check> response. This form MUST be
identified by setting the <launch:check> "type" attribute to "avail".
</t>
<t>
The EPP <check> command is used to determine if an object
can be provisioned within a repository. Domain names may be made
available only in unique launch phases, whilst remaining unavailable
for concurrent launch phases. In addition to the elements
expressed in the <domain:check>, the command is extended with
the <launch:check> element that contains the following child elements:</t>
<t><list hangIndent="4" style="hanging">
<t hangText="<launch:phase>">The launch phase to which
domain name availability should be determined.</t>
</list></t>
<figure>
<preamble>Example Availability Check Form command using the <check>
domain command and the <launch:check> extension with
the "type" set to "avail", to determine
the availability of two domain names in the
"idn-release" custom launch phase:</preamble>
<artwork><![CDATA[
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="avail">
C: <launch:phase name="idn-release">custom</launch:phase>
C: </launch:check>
C: </extension>
C: <clTRID>ABC-12345</clTRID>
C: </command>
C:</epp>]]></artwork>
</figure>
<t>The Availability Check Form does not define any extension to the response of an
<check> domain command. After processing the command, the
server replies with a standard EPP response as defined in the <xref
target="RFC5731">EPP domain name mapping</xref>.</t>
</section>
</section>
<!-- end CHECK command -->
<section anchor="infoCommand" title="EPP <info> Command">
<t>This extension defines additional elements to extend the EPP
<info> command and response to be used in conjunction with the
<xref target="RFC5731">EPP domain name mapping</xref>.</t>
<t>The EPP <info> command is used to retrieve information
for a launch phase registration or application. The <xref target="applicationID">Application Identifier</xref>
returned in the <launch:creData> element of the <xref target="createCommand">create response</xref>
is used for retrieving information for a Launch Application. A <launch:info> element
is sent along with the regular <info> domain command. The <launch:info> element includes
an OPTIONAL "includeMark" boolean attribute, with a default value of "false", to indicate whether
or not to include the mark in the response. The
<launch:info> element contains the following child
elements:</t>
<t><list hangIndent="4" style="hanging">
<t hangText="<launch:phase>">The phase during which the
application or registration was submitted or is associated with.
Server policy defines the phases that are supported.</t>
<t hangText="<launch:applicationID>">OPTIONAL application
identifier of the Launch Application.</t>
</list></t>
<figure>
<preamble>Example <info> domain command with the
<launch:info> extension to retrieve information
for the sunrise application for example.tld and application
identifier "abc123":</preamble>
<artwork><![CDATA[
C:<?xml version="1.0" encoding="UTF-8" standalone="no"?>
C:<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
C: <command>
C: <info>
C: <domain:info
C: xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
C: <domain:name>example.tld</domain:name>
C: </domain:info>
C: </info>
C: <extension>
C: <launch:info
C: xmlns:launch="urn:ietf:params:xml:ns:launch-1.0"
C: includeMark="true">
C: <launch:phase>sunrise</launch:phase>
C: <launch:applicationID>abc123</launch:applicationID>
C: </launch:info>
C: </extension>
C: <clTRID>ABC-12345</clTRID>
C: </command>
C:</epp>]]></artwork>
</figure>
<figure>
<preamble>Example <info> domain command with the
<launch:info> extension to retrieve information
for the sunrise registration for example.tld:</preamble>
<artwork><![CDATA[
C:<?xml version="1.0" encoding="UTF-8" standalone="no"?>
C:<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
C: <command>
C: <info>
C: <domain:info
C: xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
C: <domain:name>example.tld</domain:name>
C: </domain:info>
C: </info>
C: <extension>
C: <launch:info
C: xmlns:launch="urn:ietf:params:xml:ns:launch-1.0">
C: <launch:phase>sunrise</launch:phase>
C: </launch:info>
C: </extension>
C: <clTRID>ABC-12345</clTRID>
C: </command>
C:</epp>]]></artwork>
</figure>
<t>If the query was successful, the server replies with a
<launch:infData> element along with the regular EPP
<resData>. The <launch:infData> contains the following
child elements:</t>
<t><list hangIndent="4" style="hanging">
<t hangText="<launch:phase>">The phase during which the
application was submitted, or is associated with, that matches the associated
<info> command <launch:phase>.</t>
<t hangText="<launch:applicationID>">OPTIONAL Application
Identifier of the Launch Application.</t>
<t hangText="<launch:status>">OPTIONAL status of the Launch Application
using one of the supported <xref target="statuses">status
values</xref>.</t>
<t hangText="<mark:mark>">Zero or more
<xref target="mark"><mark:mark></xref> elements.
</t>
</list></t>
<figure>
<preamble>Example <info> domain response using the
<launch:infData> extension with the mark
information:</preamble>
<artwork><![CDATA[
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: <resData>
S: <domain:infData
S: xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
S: <domain:name>example.tld</domain:name>
S: <domain:roid>EXAMPLE1-REP</domain:roid>
S: <domain:status s="pendingCreate"/>
S: <domain:registrant>jd1234</domain:registrant>
S: <domain:contact type="admin">sh8013</domain:contact>
S: <domain:contact type="tech">sh8013</domain:contact>
S: <domain:clID>ClientX</domain:clID>
S: <domain:crID>ClientY</domain:crID>
S: <domain:crDate>2012-04-03T22:00:00.0Z</domain:crDate>
S: <domain:authInfo>
S: <domain:pw>2fooBAR</domain:pw>
S: </domain:authInfo>
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>