epp-client-afnic 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,393 @@
1
+ <?xml version="1.0" encoding="UTF-8" ?>
2
+
3
+ <schema targetNamespace="http://www.afnic.fr/xml/epp/frnic-1.0"
4
+ xmlns:frnic="http://www.afnic.fr/xml/epp/frnic-1.0"
5
+ xmlns:eppcom="urn:ietf:params:xml:ns:eppcom-1.0"
6
+ xmlns:epp="urn:ietf:params:xml:ns:epp-1.0"
7
+ xmlns:domain="urn:ietf:params:xml:ns:domain-1.0"
8
+ xmlns:contact="urn:ietf:params:xml:ns:contact-1.0"
9
+ xmlns="http://www.w3.org/2001/XMLSchema"
10
+ elementFormDefault="qualified">
11
+
12
+ <annotation>
13
+ <documentation>
14
+ Extensible Provisioning Protocol v1.0
15
+ AFNIC specific extensions.
16
+ Draft version 1.0
17
+ </documentation>
18
+ </annotation>
19
+
20
+ <!--
21
+ Import needed schemas
22
+ -->
23
+ <import namespace="urn:ietf:params:xml:ns:eppcom-1.0"
24
+ schemaLocation="eppcom-1.0.xsd"/>
25
+ <import namespace="urn:ietf:params:xml:ns:epp-1.0"
26
+ schemaLocation="epp-1.0.xsd"/>
27
+ <import namespace="urn:ietf:params:xml:ns:domain-1.0"
28
+ schemaLocation="domain-1.0.xsd"/>
29
+ <import namespace="urn:ietf:params:xml:ns:contact-1.0"
30
+ schemaLocation="contact-1.0.xsd"/>
31
+
32
+ <!--
33
+ All extension data can be found in an ext element
34
+ -->
35
+ <element name="ext" type="frnic:extType"/>
36
+
37
+ <!--
38
+ Extension block type
39
+ -->
40
+ <complexType name="extType">
41
+ <choice>
42
+ <element name="command" type="frnic:commandType"/>
43
+ <element name="create" type="frnic:createType"/>
44
+ <element name="transfer" type="frnic:transferType"/>
45
+ <element name="update" type="frnic:updateType"/>
46
+ <element name="resData" type="frnic:resDataType"/>
47
+ </choice>
48
+ </complexType>
49
+
50
+ <!--
51
+ AFNIC specific commands (Domain Trade/Recover)
52
+ -->
53
+ <complexType name="commandType">
54
+ <sequence>
55
+ <choice>
56
+ <element name="trade" type="frnic:trdType"/>
57
+ <element name="recover" type="frnic:recType"/>
58
+ </choice>
59
+ <element name="clTRID" type="epp:trIDStringType" minOccurs="0"/>
60
+ </sequence>
61
+ </complexType>
62
+
63
+ <!--
64
+ AFNIC transfer extensions (Domain)
65
+ -->
66
+ <complexType name="transferType">
67
+ <choice>
68
+ <element name="domain" type="frnic:domainTransferType"/>
69
+ </choice>
70
+ </complexType>
71
+
72
+ <!--
73
+ AFNIC create extensions (Contact)
74
+ -->
75
+ <complexType name="createType">
76
+ <choice>
77
+ <element name="contact" type="frnic:contactCreateInfoType"/>
78
+ </choice>
79
+ </complexType>
80
+
81
+ <!--
82
+ AFNIC update extensions (Contact)
83
+ -->
84
+ <complexType name="updateType">
85
+ <choice>
86
+ <element name="contact" type="frnic:contactUpdateType"/>
87
+ </choice>
88
+ </complexType>
89
+
90
+ <!--
91
+ AFNIC response data extensions
92
+ -->
93
+ <complexType name="resDataType">
94
+ <choice>
95
+ <element name="trdData" type="frnic:resTrdDataType"/>
96
+ <element name="recData" type="frnic:resRecDataType"/>
97
+ <element name="chkData" type="frnic:resChkDataType"/>
98
+ <element name="infData" type="frnic:resInfDataType"/>
99
+ </choice>
100
+ </complexType>
101
+
102
+ <!--
103
+ AFNIC specific command details (Domain Trade/Recover)
104
+ -->
105
+ <complexType name="trdType">
106
+ <sequence>
107
+ <element name="domain" type="frnic:domainTrdType"/>
108
+ </sequence>
109
+ <attribute name="op" type="frnic:tradeOpType" use="required"/>
110
+ </complexType>
111
+
112
+ <complexType name="domainTrdType">
113
+ <sequence>
114
+ <element name="name" type="eppcom:labelType"/>
115
+ <sequence minOccurs="0">
116
+ <element name="registrant" type="eppcom:clIDType"/>
117
+ <element name="contact" type="domain:contactType" minOccurs="2" maxOccurs="4"/>
118
+ </sequence>
119
+ </sequence>
120
+ </complexType>
121
+
122
+ <complexType name="recType">
123
+ <sequence>
124
+ <element name="domain" type="frnic:domainRecType"/>
125
+ </sequence>
126
+ <attribute name="op" type="frnic:recoverOpType" use="required"/>
127
+ </complexType>
128
+
129
+ <complexType name="domainRecType">
130
+ <sequence>
131
+ <element name="name" type="eppcom:labelType"/>
132
+ <element name="authInfo" type="domain:authInfoType"/>
133
+ <element name="registrant" type="eppcom:clIDType"/>
134
+ <element name="contact" type="domain:contactType" minOccurs="2" maxOccurs="4"/>
135
+ </sequence>
136
+ </complexType>
137
+
138
+ <!--
139
+ AFNIC transfer domain command extensions details
140
+ -->
141
+ <complexType name="domainTransferType">
142
+ <sequence>
143
+ <element name="contact" type="domain:contactType" minOccurs="2" maxOccurs="4"/>
144
+ </sequence>
145
+ </complexType>
146
+
147
+ <!--
148
+ AFNIC create contact command extensions details
149
+ -->
150
+ <complexType name="contactCreateInfoType">
151
+ <choice>
152
+ <sequence>
153
+ <element name="list" type="token" minOccurs="0"/>
154
+ <element name="individualInfos" type="frnic:contactCreateInfoIIDType"/>
155
+ <element name="firstName" type="contact:postalLineType"/>
156
+ </sequence>
157
+ <element name="firstName" type="contact:postalLineType"/>
158
+ <element name="legalEntityInfos" type="frnic:contactCreateInfoLIDType"/>
159
+ </choice>
160
+ </complexType>
161
+
162
+ <complexType name="contactCreateInfoIIDType">
163
+ <sequence>
164
+ <element name="idStatus" type="frnic:identificationStatusType" minOccurs="0"/>
165
+ <element name="birthDate" type="date"/>
166
+ <element name="birthCity" type="contact:postalLineType" minOccurs="0"/>
167
+ <element name="birthPc" type="contact:pcType" minOccurs="0"/>
168
+ <element name="birthCc" type="contact:ccType"/>
169
+ </sequence>
170
+ </complexType>
171
+
172
+ <complexType name="contactCreateInfoLIDType">
173
+ <sequence>
174
+ <element name="idStatus" type="frnic:identificationStatusType" minOccurs="0"/>
175
+ <element name="legalStatus" type="frnic:legalStatusType"/>
176
+ <element name="siren" type="token" minOccurs="0"/>
177
+ <element name="VAT" type="token" minOccurs="0"/>
178
+ <element name="trademark" type="token" minOccurs="0"/>
179
+ <element name="asso" type="frnic:assoType" minOccurs="0"/>
180
+ </sequence>
181
+ </complexType>
182
+
183
+ <complexType name="legalStatusType">
184
+ <simpleContent>
185
+ <extension base="normalizedString">
186
+ <attribute name="s" type="frnic:legalStatusValueType" use="required"/>
187
+ <attribute name="lang" type="language" default="en"/>
188
+ </extension>
189
+ </simpleContent>
190
+ </complexType>
191
+
192
+ <simpleType name="legalStatusValueType">
193
+ <restriction base="token">
194
+ <enumeration value="association"/>
195
+ <enumeration value="company"/>
196
+ <enumeration value="other"/>
197
+ </restriction>
198
+ </simpleType>
199
+
200
+ <complexType name="assoType">
201
+ <choice>
202
+ <element name="waldec" type="token"/>
203
+ <sequence>
204
+ <element name="decl" type="date"/>
205
+ <element name="publ" type="frnic:assoPublType"/>
206
+ </sequence>
207
+ </choice>
208
+ </complexType>
209
+
210
+ <complexType name="assoPublType">
211
+ <simpleContent>
212
+ <extension base="date">
213
+ <attribute name="announce" type="nonNegativeInteger" use="required"/>
214
+ <attribute name="page" type="nonNegativeInteger" use="required"/>
215
+ </extension>
216
+ </simpleContent>
217
+ </complexType>
218
+
219
+ <!--
220
+ AFNIC update contact command extensions details
221
+ -->
222
+ <complexType name="contactUpdateType">
223
+ <sequence>
224
+ <element name="add" type="frnic:contactAddRemType" minOccurs="0"/>
225
+ <element name="rem" type="frnic:contactAddRemType" minOccurs="0"/>
226
+ </sequence>
227
+ </complexType>
228
+
229
+ <complexType name="contactAddRemType">
230
+ <sequence>
231
+ <element name="list" type="token" minOccurs="0"/>
232
+ </sequence>
233
+ </complexType>
234
+
235
+ <!--
236
+ AFNIC trade response extensions details
237
+ -->
238
+ <complexType name="resTrdDataType">
239
+ <choice>
240
+ <element name="domain" type="frnic:resTrdDomDataType"/>
241
+ </choice>
242
+ </complexType>
243
+
244
+ <complexType name="resTrdDomDataType">
245
+ <sequence>
246
+ <element name="name" type="eppcom:labelType"/>
247
+ <element name="trStatus" type="frnic:tradeStatusType"/>
248
+ <element name="reID" type="eppcom:clIDType"/>
249
+ <element name="reDate" type="dateTime"/>
250
+ <element name="reHldID" type="eppcom:clIDType" minOccurs="0"/>
251
+ <element name="rhDate" type="dateTime"/>
252
+ <element name="acID" type="eppcom:clIDType"/>
253
+ <element name="acHldID" type="eppcom:clIDType" minOccurs="0"/>
254
+ <element name="ahDate" type="dateTime"/>
255
+ </sequence>
256
+ </complexType>
257
+
258
+ <!--
259
+ AFNIC recover response extensions details
260
+ -->
261
+ <complexType name="resRecDataType">
262
+ <choice>
263
+ <element name="domain" type="frnic:resRecDomDataType"/>
264
+ </choice>
265
+ </complexType>
266
+
267
+ <complexType name="resRecDomDataType">
268
+ <sequence>
269
+ <element name="name" type="eppcom:labelType"/>
270
+ <element name="reID" type="eppcom:clIDType"/>
271
+ <element name="reDate" type="dateTime"/>
272
+ <element name="reHldID" type="eppcom:clIDType" minOccurs="0"/>
273
+ <element name="acID" type="eppcom:clIDType"/>
274
+ <element name="acHldID" type="eppcom:clIDType" minOccurs="0"/>
275
+ </sequence>
276
+ </complexType>
277
+
278
+ <!--
279
+ AFNIC <check> response extensions details
280
+ -->
281
+ <complexType name="resChkDataType">
282
+ <choice>
283
+ <element name="domain" type="frnic:resChkDomDataType"/>
284
+ </choice>
285
+ </complexType>
286
+
287
+ <complexType name="resChkDomDataType">
288
+ <sequence>
289
+ <element name="cd" type="frnic:domCheckType" maxOccurs="unbounded"/>
290
+ </sequence>
291
+ </complexType>
292
+
293
+ <complexType name="domCheckType">
294
+ <sequence>
295
+ <element name="name" type="frnic:domCheckNameType"/>
296
+ <element name="rsvReason" type="eppcom:reasonType" minOccurs="0"/>
297
+ <element name="fbdReason" type="eppcom:reasonType" minOccurs="0"/>
298
+ </sequence>
299
+ </complexType>
300
+
301
+ <complexType name="domCheckNameType">
302
+ <simpleContent>
303
+ <extension base="eppcom:labelType">
304
+ <attribute name="reserved" type="boolean" use="required"/>
305
+ <attribute name="forbidden" type="boolean" use="required"/>
306
+ </extension>
307
+ </simpleContent>
308
+ </complexType>
309
+
310
+ <!--
311
+ AFNIC <info> response extensions details
312
+ -->
313
+ <complexType name="resInfDataType">
314
+ <choice>
315
+ <element name="domain" type="frnic:resInfDomDataType"/>
316
+ <element name="contact" type="frnic:contactCreateInfoType"/>
317
+ </choice>
318
+ </complexType>
319
+
320
+ <complexType name="resInfDomDataType">
321
+ <sequence>
322
+ <element name="status" type="frnic:domStatusType" maxOccurs="2"/>
323
+ </sequence>
324
+ </complexType>
325
+
326
+ <complexType name="domStatusType">
327
+ <simpleContent>
328
+ <extension base="normalizedString">
329
+ <attribute name="s" type="frnic:domStatusValueType" use="required"/>
330
+ <attribute name="lang" type="language" default="en"/>
331
+ </extension>
332
+ </simpleContent>
333
+ </complexType>
334
+
335
+ <simpleType name="domStatusValueType">
336
+ <restriction base="token">
337
+ <enumeration value="serverTradeProhibited"/>
338
+ <enumeration value="serverRecoverProhibited"/>
339
+ </restriction>
340
+ </simpleType>
341
+
342
+ <!--
343
+ AFNIC Trade command "op" attribute values
344
+ -->
345
+ <simpleType name="tradeOpType">
346
+ <restriction base="token">
347
+ <enumeration value="query"/>
348
+ <enumeration value="cancel"/>
349
+ <enumeration value="request"/>
350
+ </restriction>
351
+ </simpleType>
352
+
353
+ <!--
354
+ AFNIC Recover command "op" attribute values
355
+ -->
356
+ <simpleType name="recoverOpType">
357
+ <restriction base="token">
358
+ <enumeration value="query"/>
359
+ <enumeration value="request"/>
360
+ </restriction>
361
+ </simpleType>
362
+
363
+ <!--
364
+ AFNIC Trade process status identifiers.
365
+ -->
366
+ <simpleType name="tradeStatusType">
367
+ <restriction base="token">
368
+ <enumeration value="pending"/>
369
+ <enumeration value="newHolderApproved"/>
370
+ <enumeration value="oldHolderApproved"/>
371
+ <enumeration value="holdersApproved"/>
372
+ <enumeration value="newHolderRejected"/>
373
+ <enumeration value="oldHolderRejected"/>
374
+ </restriction>
375
+ </simpleType>
376
+
377
+ <!--
378
+ AFNIC Identification process status identifiers.
379
+ -->
380
+ <simpleType name="identificationStatusType">
381
+ <restriction base="token">
382
+ <enumeration value="no"/>
383
+ <enumeration value="pending"/>
384
+ <enumeration value="ok"/>
385
+ <enumeration value="problem"/>
386
+ <enumeration value="ko"/>
387
+ <enumeration value="deprecated"/>
388
+ <enumeration value="control"/>
389
+ <enumeration value="delayed"/>
390
+ </restriction>
391
+ </simpleType>
392
+
393
+ </schema>
@@ -0,0 +1,406 @@
1
+ <?xml version="1.0" encoding="UTF-8" ?>
2
+
3
+ <schema targetNamespace="http://www.afnic.fr/xml/epp/frnic-1.1"
4
+ xmlns:frnic="http://www.afnic.fr/xml/epp/frnic-1.1"
5
+ xmlns:eppcom="urn:ietf:params:xml:ns:eppcom-1.0"
6
+ xmlns:epp="urn:ietf:params:xml:ns:epp-1.0"
7
+ xmlns:domain="urn:ietf:params:xml:ns:domain-1.0"
8
+ xmlns:contact="urn:ietf:params:xml:ns:contact-1.0"
9
+ xmlns="http://www.w3.org/2001/XMLSchema"
10
+ elementFormDefault="qualified">
11
+
12
+ <annotation>
13
+ <documentation>
14
+ Extensible Provisioning Protocol v1.0
15
+ AFNIC specific extensions v1.1
16
+ </documentation>
17
+ </annotation>
18
+
19
+ <!--
20
+ Import needed schemas
21
+ -->
22
+ <import namespace="urn:ietf:params:xml:ns:eppcom-1.0"
23
+ schemaLocation="eppcom-1.0.xsd"/>
24
+ <import namespace="urn:ietf:params:xml:ns:epp-1.0"
25
+ schemaLocation="epp-1.0.xsd"/>
26
+ <import namespace="urn:ietf:params:xml:ns:domain-1.0"
27
+ schemaLocation="domain-1.0.xsd"/>
28
+ <import namespace="urn:ietf:params:xml:ns:contact-1.0"
29
+ schemaLocation="contact-1.0.xsd"/>
30
+
31
+ <!--
32
+ All extension data can be found in an ext element
33
+ -->
34
+ <element name="ext" type="frnic:extType"/>
35
+
36
+ <!--
37
+ Extension block type
38
+ -->
39
+ <complexType name="extType">
40
+ <choice>
41
+ <element name="command" type="frnic:commandType"/>
42
+ <element name="create" type="frnic:createType"/>
43
+ <element name="transfer" type="frnic:transferType"/>
44
+ <element name="update" type="frnic:updateType"/>
45
+ <element name="resData" type="frnic:resDataType"/>
46
+ </choice>
47
+ </complexType>
48
+
49
+ <!--
50
+ AFNIC specific commands (Domain Trade/Recover)
51
+ -->
52
+ <complexType name="commandType">
53
+ <sequence>
54
+ <choice>
55
+ <element name="trade" type="frnic:trdType"/>
56
+ <element name="recover" type="frnic:recType"/>
57
+ </choice>
58
+ <element name="clTRID" type="epp:trIDStringType" minOccurs="0"/>
59
+ </sequence>
60
+ </complexType>
61
+
62
+ <!--
63
+ AFNIC transfer extensions (Domain)
64
+ -->
65
+ <complexType name="transferType">
66
+ <choice>
67
+ <element name="domain" type="frnic:domainTransferType"/>
68
+ </choice>
69
+ </complexType>
70
+
71
+ <!--
72
+ AFNIC create extensions (Contact)
73
+ -->
74
+ <complexType name="createType">
75
+ <choice>
76
+ <element name="contact" type="frnic:contactCreateInfoType"/>
77
+ </choice>
78
+ </complexType>
79
+
80
+ <!--
81
+ AFNIC update extensions (Contact)
82
+ -->
83
+ <complexType name="updateType">
84
+ <choice>
85
+ <element name="contact" type="frnic:contactUpdateType"/>
86
+ </choice>
87
+ </complexType>
88
+
89
+ <!--
90
+ AFNIC response data extensions
91
+ -->
92
+ <complexType name="resDataType">
93
+ <choice>
94
+ <element name="trdData" type="frnic:resTrdDataType"/>
95
+ <element name="recData" type="frnic:resRecDataType"/>
96
+ <element name="chkData" type="frnic:resChkDataType"/>
97
+ <element name="infData" type="frnic:resInfDataType"/>
98
+ </choice>
99
+ </complexType>
100
+
101
+ <!--
102
+ AFNIC specific command details (Domain Trade/Recover)
103
+ -->
104
+ <complexType name="trdType">
105
+ <sequence>
106
+ <element name="domain" type="frnic:domainTrdType"/>
107
+ </sequence>
108
+ <attribute name="op" type="frnic:tradeOpType" use="required"/>
109
+ </complexType>
110
+
111
+ <complexType name="domainTrdType">
112
+ <sequence>
113
+ <element name="name" type="eppcom:labelType"/>
114
+ <sequence minOccurs="0">
115
+ <element name="registrant" type="eppcom:clIDType"/>
116
+ <element name="contact" type="domain:contactType" minOccurs="2" maxOccurs="4"/>
117
+ </sequence>
118
+ </sequence>
119
+ <attribute name="keepDS" type="boolean" use="required"/>
120
+ </complexType>
121
+
122
+ <complexType name="recType">
123
+ <sequence>
124
+ <element name="domain" type="frnic:domainRecType"/>
125
+ </sequence>
126
+ <attribute name="op" type="frnic:recoverOpType" use="required"/>
127
+ </complexType>
128
+
129
+ <complexType name="domainRecType">
130
+ <sequence>
131
+ <element name="name" type="eppcom:labelType"/>
132
+ <element name="authInfo" type="domain:authInfoType"/>
133
+ <element name="registrant" type="eppcom:clIDType"/>
134
+ <element name="contact" type="domain:contactType" minOccurs="2" maxOccurs="4"/>
135
+ </sequence>
136
+ <attribute name="keepDS" type="boolean" use="required"/>
137
+ </complexType>
138
+
139
+ <!--
140
+ AFNIC transfer domain command extensions details
141
+ -->
142
+ <complexType name="domainTransferType">
143
+ <sequence>
144
+ <element name="contact" type="domain:contactType" minOccurs="2" maxOccurs="4"/>
145
+ </sequence>
146
+ <attribute name="keepDS" type="boolean" use="required"/>
147
+ </complexType>
148
+
149
+ <!--
150
+ AFNIC create contact command extensions details
151
+ -->
152
+ <complexType name="contactCreateInfoType">
153
+ <sequence>
154
+ <choice>
155
+ <sequence>
156
+ <element name="list" type="token" minOccurs="0"/>
157
+ <element name="individualInfos" type="frnic:contactCreateInfoIIDType"/>
158
+ <element name="firstName" type="contact:postalLineType"/>
159
+ </sequence>
160
+ <element name="firstName" type="contact:postalLineType"/>
161
+ <element name="legalEntityInfos" type="frnic:contactCreateInfoLIDType"/>
162
+ </choice>
163
+ <element name="obsoleted" type="frnic:contactObsoletedType" minOccurs="0"/>
164
+ </sequence>
165
+ </complexType>
166
+
167
+ <complexType name="contactCreateInfoIIDType">
168
+ <sequence>
169
+ <element name="idStatus" type="frnic:identificationStatusType" minOccurs="0"/>
170
+ <element name="birthDate" type="date"/>
171
+ <element name="birthCity" type="contact:postalLineType" minOccurs="0"/>
172
+ <element name="birthPc" type="contact:pcType" minOccurs="0"/>
173
+ <element name="birthCc" type="contact:ccType"/>
174
+ </sequence>
175
+ </complexType>
176
+
177
+ <complexType name="contactCreateInfoLIDType">
178
+ <sequence>
179
+ <element name="idStatus" type="frnic:identificationStatusType" minOccurs="0"/>
180
+ <element name="legalStatus" type="frnic:legalStatusType"/>
181
+ <element name="siren" type="token" minOccurs="0"/>
182
+ <element name="VAT" type="token" minOccurs="0"/>
183
+ <element name="trademark" type="token" minOccurs="0"/>
184
+ <element name="asso" type="frnic:assoType" minOccurs="0"/>
185
+ </sequence>
186
+ </complexType>
187
+
188
+ <complexType name="legalStatusType">
189
+ <simpleContent>
190
+ <extension base="normalizedString">
191
+ <attribute name="s" type="frnic:legalStatusValueType" use="required"/>
192
+ <attribute name="lang" type="language" default="en"/>
193
+ </extension>
194
+ </simpleContent>
195
+ </complexType>
196
+
197
+ <simpleType name="legalStatusValueType">
198
+ <restriction base="token">
199
+ <enumeration value="association"/>
200
+ <enumeration value="company"/>
201
+ <enumeration value="other"/>
202
+ </restriction>
203
+ </simpleType>
204
+
205
+ <complexType name="assoType">
206
+ <choice>
207
+ <element name="waldec" type="token"/>
208
+ <sequence>
209
+ <element name="decl" type="date" minOccurs="0"/>
210
+ <element name="publ" type="frnic:assoPublType"/>
211
+ </sequence>
212
+ </choice>
213
+ </complexType>
214
+
215
+ <complexType name="assoPublType">
216
+ <simpleContent>
217
+ <extension base="date">
218
+ <attribute name="announce" type="nonNegativeInteger"/>
219
+ <attribute name="page" type="nonNegativeInteger" use="required"/>
220
+ </extension>
221
+ </simpleContent>
222
+ </complexType>
223
+
224
+ <complexType name="contactObsoletedType">
225
+ <simpleContent>
226
+ <extension base="boolean">
227
+ <attribute name="when" type="dateTime"/>
228
+ </extension>
229
+ </simpleContent>
230
+ </complexType>
231
+
232
+ <!--
233
+ AFNIC update contact command extensions details
234
+ -->
235
+ <complexType name="contactUpdateType">
236
+ <choice>
237
+ <element name="add" type="frnic:contactAddRemType"/>
238
+ <element name="rem" type="frnic:contactAddRemType"/>
239
+ </choice>
240
+ </complexType>
241
+
242
+ <complexType name="contactAddRemType">
243
+ <sequence>
244
+ <element name="list" type="token" minOccurs="1"/>
245
+ </sequence>
246
+ </complexType>
247
+
248
+ <!--
249
+ AFNIC trade response extensions details
250
+ -->
251
+ <complexType name="resTrdDataType">
252
+ <choice>
253
+ <element name="domain" type="frnic:resTrdDomDataType"/>
254
+ </choice>
255
+ </complexType>
256
+
257
+ <complexType name="resTrdDomDataType">
258
+ <sequence>
259
+ <element name="name" type="eppcom:labelType"/>
260
+ <element name="trStatus" type="frnic:tradeStatusType"/>
261
+ <element name="reID" type="eppcom:clIDType"/>
262
+ <element name="reDate" type="dateTime"/>
263
+ <element name="reHldID" type="eppcom:clIDType" minOccurs="0"/>
264
+ <element name="rhDate" type="dateTime"/>
265
+ <element name="acID" type="eppcom:clIDType"/>
266
+ <element name="acHldID" type="eppcom:clIDType" minOccurs="0"/>
267
+ <element name="ahDate" type="dateTime"/>
268
+ </sequence>
269
+ </complexType>
270
+
271
+ <!--
272
+ AFNIC recover response extensions details
273
+ -->
274
+ <complexType name="resRecDataType">
275
+ <choice>
276
+ <element name="domain" type="frnic:resRecDomDataType"/>
277
+ </choice>
278
+ </complexType>
279
+
280
+ <complexType name="resRecDomDataType">
281
+ <sequence>
282
+ <element name="name" type="eppcom:labelType"/>
283
+ <element name="reID" type="eppcom:clIDType"/>
284
+ <element name="reDate" type="dateTime"/>
285
+ <element name="reHldID" type="eppcom:clIDType" minOccurs="0"/>
286
+ <element name="acID" type="eppcom:clIDType"/>
287
+ <element name="acHldID" type="eppcom:clIDType" minOccurs="0"/>
288
+ </sequence>
289
+ </complexType>
290
+
291
+ <!--
292
+ AFNIC <check> response extensions details
293
+ -->
294
+ <complexType name="resChkDataType">
295
+ <choice>
296
+ <element name="domain" type="frnic:resChkDomDataType"/>
297
+ </choice>
298
+ </complexType>
299
+
300
+ <complexType name="resChkDomDataType">
301
+ <sequence>
302
+ <element name="cd" type="frnic:domCheckType" maxOccurs="unbounded"/>
303
+ </sequence>
304
+ </complexType>
305
+
306
+ <complexType name="domCheckType">
307
+ <sequence>
308
+ <element name="name" type="frnic:domCheckNameType"/>
309
+ <element name="rsvReason" type="eppcom:reasonType" minOccurs="0"/>
310
+ <element name="fbdReason" type="eppcom:reasonType" minOccurs="0"/>
311
+ </sequence>
312
+ </complexType>
313
+
314
+ <complexType name="domCheckNameType">
315
+ <simpleContent>
316
+ <extension base="eppcom:labelType">
317
+ <attribute name="reserved" type="boolean" use="required"/>
318
+ <attribute name="forbidden" type="boolean" use="required"/>
319
+ </extension>
320
+ </simpleContent>
321
+ </complexType>
322
+
323
+ <!--
324
+ AFNIC <info> response extensions details
325
+ -->
326
+ <complexType name="resInfDataType">
327
+ <choice>
328
+ <element name="domain" type="frnic:resInfDomDataType"/>
329
+ <element name="contact" type="frnic:contactCreateInfoType"/>
330
+ </choice>
331
+ </complexType>
332
+
333
+ <complexType name="resInfDomDataType">
334
+ <sequence>
335
+ <element name="status" type="frnic:domStatusType" maxOccurs="2"/>
336
+ </sequence>
337
+ </complexType>
338
+
339
+ <complexType name="domStatusType">
340
+ <simpleContent>
341
+ <extension base="normalizedString">
342
+ <attribute name="s" type="frnic:domStatusValueType" use="required"/>
343
+ <attribute name="lang" type="language" default="en"/>
344
+ </extension>
345
+ </simpleContent>
346
+ </complexType>
347
+
348
+ <simpleType name="domStatusValueType">
349
+ <restriction base="token">
350
+ <enumeration value="serverTradeProhibited"/>
351
+ <enumeration value="serverRecoverProhibited"/>
352
+ </restriction>
353
+ </simpleType>
354
+
355
+ <!--
356
+ AFNIC Trade command "op" attribute values
357
+ -->
358
+ <simpleType name="tradeOpType">
359
+ <restriction base="token">
360
+ <enumeration value="query"/>
361
+ <enumeration value="cancel"/>
362
+ <enumeration value="request"/>
363
+ </restriction>
364
+ </simpleType>
365
+
366
+ <!--
367
+ AFNIC Recover command "op" attribute values
368
+ -->
369
+ <simpleType name="recoverOpType">
370
+ <restriction base="token">
371
+ <enumeration value="query"/>
372
+ <enumeration value="request"/>
373
+ </restriction>
374
+ </simpleType>
375
+
376
+ <!--
377
+ AFNIC Trade process status identifiers.
378
+ -->
379
+ <simpleType name="tradeStatusType">
380
+ <restriction base="token">
381
+ <enumeration value="pending"/>
382
+ <enumeration value="newHolderApproved"/>
383
+ <enumeration value="oldHolderApproved"/>
384
+ <enumeration value="holdersApproved"/>
385
+ <enumeration value="newHolderRejected"/>
386
+ <enumeration value="oldHolderRejected"/>
387
+ </restriction>
388
+ </simpleType>
389
+
390
+ <!--
391
+ AFNIC Identification process status identifiers.
392
+ -->
393
+ <simpleType name="identificationStatusType">
394
+ <restriction base="token">
395
+ <enumeration value="no"/>
396
+ <enumeration value="pending"/>
397
+ <enumeration value="ok"/>
398
+ <enumeration value="problem"/>
399
+ <enumeration value="ko"/>
400
+ <enumeration value="deprecated"/>
401
+ <enumeration value="control"/>
402
+ <enumeration value="delayed"/>
403
+ </restriction>
404
+ </simpleType>
405
+
406
+ </schema>