epp-client-afnic 0.14.0 → 0.15.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,393 +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>
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>