sterling_api 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +3 -0
- data/Gemfile +4 -0
- data/MIT-LICENSE +20 -0
- data/README.md +2 -0
- data/Rakefile +2 -0
- data/doc/AdminRequest.xsd +47 -0
- data/doc/AdminResponse.xsd +64 -0
- data/doc/CPBackgroundReports.xsd +55 -0
- data/doc/CPScreenings.xsd +1762 -0
- data/doc/admin.wsdl +57 -0
- data/init.rb +1 -0
- data/install.rb +1 -0
- data/lib/sterling_api/background_check.rb +339 -0
- data/lib/sterling_api/password_change.rb +65 -0
- data/lib/sterling_api/remote_actions.rb +116 -0
- data/lib/sterling_api/version.rb +3 -0
- data/lib/sterling_api/xml_helper.rb +43 -0
- data/lib/sterling_api/xml_samples.rb +50 -0
- data/lib/sterling_api.rb +124 -0
- data/lib/tasks/sterling_api_tasks.rake +4 -0
- data/sterling_api.gemspec +27 -0
- data/test/background_check_test.rb +304 -0
- data/test/password_change_test.rb +32 -0
- data/test/remote_actions_test.rb +47 -0
- data/test/sterling_api_test.rb +70 -0
- data/test/test_helper.rb +143 -0
- data/uninstall.rb +1 -0
- metadata +139 -0
@@ -0,0 +1,1762 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xs:schema targetNamespace="http://www.cpscreen.com/schemas" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.cpscreen.com/schemas" elementFormDefault="qualified" version="1">
|
3
|
+
<xs:include schemaLocation="InstantNCRP.xsd" />
|
4
|
+
<xs:include schemaLocation="InstantSSNV.xsd" />
|
5
|
+
<xs:include schemaLocation="InstantEVTN.xsd" />
|
6
|
+
<xs:include schemaLocation="CommonTypes.xsd" />
|
7
|
+
<xs:complexType name="PersonalDataType">
|
8
|
+
<xs:sequence>
|
9
|
+
<xs:element name="PersonName" type="PersonNameType" minOccurs="0" maxOccurs="unbounded">
|
10
|
+
<xs:annotation>
|
11
|
+
<xs:documentation>Name information for the search subject.</xs:documentation>
|
12
|
+
</xs:annotation>
|
13
|
+
</xs:element>
|
14
|
+
<xs:element name="PostalAddress" type="PostalAddressType" minOccurs="0" maxOccurs="unbounded">
|
15
|
+
<xs:annotation>
|
16
|
+
<xs:documentation>Postal address for the search subject.</xs:documentation>
|
17
|
+
</xs:annotation>
|
18
|
+
</xs:element>
|
19
|
+
<xs:element name="ContactMethod" type="ContactMethodType" minOccurs="0">
|
20
|
+
<xs:annotation>
|
21
|
+
<xs:documentation>Contact information including phone numbers and email addresses for the search subject.</xs:documentation>
|
22
|
+
</xs:annotation>
|
23
|
+
</xs:element>
|
24
|
+
<xs:element name="DemographicDetail" type="DemographicDetailType">
|
25
|
+
<xs:annotation>
|
26
|
+
<xs:documentation>Demographic information about the search subject.</xs:documentation>
|
27
|
+
</xs:annotation>
|
28
|
+
</xs:element>
|
29
|
+
<xs:element name="EmploymentHistory" minOccurs="0">
|
30
|
+
<xs:annotation>
|
31
|
+
<xs:documentation>Employment history for the search subject.</xs:documentation>
|
32
|
+
</xs:annotation>
|
33
|
+
<xs:complexType>
|
34
|
+
<xs:sequence>
|
35
|
+
<xs:element name="Employer" type="EmployerType" minOccurs="0" maxOccurs="unbounded"/>
|
36
|
+
</xs:sequence>
|
37
|
+
</xs:complexType>
|
38
|
+
</xs:element>
|
39
|
+
<xs:element name="EducationHistory" minOccurs="0">
|
40
|
+
<xs:annotation>
|
41
|
+
<xs:documentation>Education history for the search subject.</xs:documentation>
|
42
|
+
</xs:annotation>
|
43
|
+
<xs:complexType>
|
44
|
+
<xs:sequence>
|
45
|
+
<xs:element name="SchoolOrInstitution" type="SchoolOrInstitutionType" minOccurs="0" maxOccurs="unbounded"/>
|
46
|
+
</xs:sequence>
|
47
|
+
</xs:complexType>
|
48
|
+
</xs:element>
|
49
|
+
<xs:element name="MilitaryHistory" minOccurs="0">
|
50
|
+
<xs:annotation>
|
51
|
+
<xs:documentation>Military history for the search subject.</xs:documentation>
|
52
|
+
</xs:annotation>
|
53
|
+
<xs:complexType>
|
54
|
+
<xs:sequence>
|
55
|
+
<xs:element name="Branch" type="xs:string" minOccurs="0" maxOccurs="unbounded">
|
56
|
+
<xs:annotation>
|
57
|
+
<xs:documentation>The branch of the military the search subject was assigned. Example: army, navy, air force, marines</xs:documentation>
|
58
|
+
</xs:annotation>
|
59
|
+
</xs:element>
|
60
|
+
</xs:sequence>
|
61
|
+
</xs:complexType>
|
62
|
+
</xs:element>
|
63
|
+
<xs:element name="CriminalHistory" minOccurs="0">
|
64
|
+
<xs:annotation>
|
65
|
+
<xs:documentation>Criminal history for the search subject.</xs:documentation>
|
66
|
+
</xs:annotation>
|
67
|
+
<xs:complexType>
|
68
|
+
<xs:sequence>
|
69
|
+
<xs:element name="CriminalCase" type="CriminalCaseType" minOccurs="0" maxOccurs="unbounded"/>
|
70
|
+
</xs:sequence>
|
71
|
+
</xs:complexType>
|
72
|
+
</xs:element>
|
73
|
+
<xs:element name="References" minOccurs="0">
|
74
|
+
<xs:annotation>
|
75
|
+
<xs:documentation>References for the search subject.</xs:documentation>
|
76
|
+
</xs:annotation>
|
77
|
+
<xs:complexType>
|
78
|
+
<xs:sequence>
|
79
|
+
<xs:element name="Reference" type="ReferencesType" minOccurs="0" maxOccurs="unbounded"/>
|
80
|
+
</xs:sequence>
|
81
|
+
</xs:complexType>
|
82
|
+
</xs:element>
|
83
|
+
<xs:element name="Licenses" minOccurs="0">
|
84
|
+
<xs:annotation>
|
85
|
+
<xs:documentation>Licenses for the search subject.</xs:documentation>
|
86
|
+
</xs:annotation>
|
87
|
+
<xs:complexType>
|
88
|
+
<xs:sequence>
|
89
|
+
<xs:element name="License" type="LicenseType" minOccurs="0" maxOccurs="unbounded"/>
|
90
|
+
</xs:sequence>
|
91
|
+
</xs:complexType>
|
92
|
+
</xs:element>
|
93
|
+
</xs:sequence>
|
94
|
+
</xs:complexType>
|
95
|
+
<xs:complexType name="LicenseType">
|
96
|
+
<xs:annotation>
|
97
|
+
<xs:documentation>License information.</xs:documentation>
|
98
|
+
</xs:annotation>
|
99
|
+
<xs:sequence>
|
100
|
+
<xs:element name="LicenseNumber" type="xs:string" minOccurs="0">
|
101
|
+
<xs:annotation>
|
102
|
+
<xs:documentation>License number. Maximum of 20 characters.</xs:documentation>
|
103
|
+
</xs:annotation>
|
104
|
+
</xs:element>
|
105
|
+
<xs:element name="LicenseName">
|
106
|
+
<xs:annotation>
|
107
|
+
<xs:documentation>Type of license.
|
108
|
+
Values: cer - certification
|
109
|
+
faa - pilots
|
110
|
+
ind - individual
|
111
|
+
lic - license
|
112
|
+
mvr - motor vehicle
|
113
|
+
ins - insurance</xs:documentation>
|
114
|
+
</xs:annotation>
|
115
|
+
<xs:simpleType>
|
116
|
+
<xs:restriction base="xs:NMTOKEN">
|
117
|
+
<xs:enumeration value="cer"/>
|
118
|
+
<xs:enumeration value="faa"/>
|
119
|
+
<xs:enumeration value="ind"/>
|
120
|
+
<xs:enumeration value="lic"/>
|
121
|
+
<xs:enumeration value="mvr"/>
|
122
|
+
<xs:enumeration value="ins"/>
|
123
|
+
</xs:restriction>
|
124
|
+
</xs:simpleType>
|
125
|
+
</xs:element>
|
126
|
+
<xs:element name="CountryCode" type="xs:string" minOccurs="0"/>
|
127
|
+
<xs:element name="LicenseDescription" type="xs:string" minOccurs="0">
|
128
|
+
<xs:annotation>
|
129
|
+
<xs:documentation>Additional details about this license. Maximum of 255 characters.</xs:documentation>
|
130
|
+
</xs:annotation>
|
131
|
+
</xs:element>
|
132
|
+
<xs:element name="LicenseRegion" type="xs:string" minOccurs="0">
|
133
|
+
<xs:annotation>
|
134
|
+
<xs:documentation>License two character state.</xs:documentation>
|
135
|
+
</xs:annotation>
|
136
|
+
</xs:element>
|
137
|
+
<xs:element name="LicenseType" minOccurs="0">
|
138
|
+
<xs:annotation>
|
139
|
+
<xs:documentation>This indicates the type of License; valid values:Commercial and Non-Commercial. Applicable to Texas Only</xs:documentation>
|
140
|
+
</xs:annotation>
|
141
|
+
<xs:simpleType>
|
142
|
+
<xs:restriction base="xs:NMTOKEN">
|
143
|
+
<xs:enumeration value="Non-Commercial"/>
|
144
|
+
<xs:enumeration value="Commercial"/>
|
145
|
+
</xs:restriction>
|
146
|
+
</xs:simpleType>
|
147
|
+
</xs:element>
|
148
|
+
<xs:element name="CandidateNameOnLicense" type="xs:string" minOccurs="0">
|
149
|
+
<xs:annotation>
|
150
|
+
<xs:documentation>Candidate's name as it appears on License</xs:documentation>
|
151
|
+
</xs:annotation>
|
152
|
+
</xs:element>
|
153
|
+
<xs:element name="LicensingAgency" type="xs:string" minOccurs="0">
|
154
|
+
<xs:annotation>
|
155
|
+
<xs:documentation>Name of the Agency that issued the license.</xs:documentation>
|
156
|
+
</xs:annotation>
|
157
|
+
</xs:element>
|
158
|
+
<xs:element name="LocalLanguageAgencyName" type="xs:string" minOccurs="0">
|
159
|
+
<xs:annotation>
|
160
|
+
<xs:documentation>Name of the Agency in the local language.</xs:documentation>
|
161
|
+
</xs:annotation>
|
162
|
+
</xs:element>
|
163
|
+
<xs:element name="Institute">
|
164
|
+
<xs:complexType>
|
165
|
+
<xs:sequence>
|
166
|
+
<xs:element name="AuthorityPhone" type="xs:string" minOccurs="0">
|
167
|
+
<xs:annotation>
|
168
|
+
<xs:documentation>Agency's Contact Phone</xs:documentation>
|
169
|
+
</xs:annotation>
|
170
|
+
</xs:element>
|
171
|
+
</xs:sequence>
|
172
|
+
</xs:complexType>
|
173
|
+
</xs:element>
|
174
|
+
<xs:element name="LicenseStatus" type="xs:string" minOccurs="0">
|
175
|
+
<xs:annotation>
|
176
|
+
<xs:documentation>Status of the issued License</xs:documentation>
|
177
|
+
</xs:annotation>
|
178
|
+
</xs:element>
|
179
|
+
<xs:element name="LicenseAuthorityAddress" type="PostalAddressType" minOccurs="0">
|
180
|
+
<xs:annotation>
|
181
|
+
<xs:documentation>Address of issuing agency </xs:documentation>
|
182
|
+
</xs:annotation>
|
183
|
+
</xs:element>
|
184
|
+
</xs:sequence>
|
185
|
+
<xs:attribute name="validFrom" type="DateOrEmptyType"/>
|
186
|
+
<xs:attribute name="validTo" type="DateOrEmptyType"/>
|
187
|
+
</xs:complexType>
|
188
|
+
<xs:complexType name="ReferencesType">
|
189
|
+
<xs:annotation>
|
190
|
+
<xs:documentation>Reference information.</xs:documentation>
|
191
|
+
</xs:annotation>
|
192
|
+
<xs:sequence>
|
193
|
+
<xs:element name="PersonName" type="xs:string">
|
194
|
+
<xs:annotation>
|
195
|
+
<xs:documentation>Name of contact. Maximum of 90 characters.</xs:documentation>
|
196
|
+
</xs:annotation>
|
197
|
+
</xs:element>
|
198
|
+
<xs:element name="ReferenceType" minOccurs="0">
|
199
|
+
<xs:simpleType>
|
200
|
+
<xs:restriction base="xs:NMTOKEN">
|
201
|
+
<xs:enumeration value="Personal"/>
|
202
|
+
<xs:enumeration value="Professional"/>
|
203
|
+
<xs:enumeration value="Business"/>
|
204
|
+
</xs:restriction>
|
205
|
+
</xs:simpleType>
|
206
|
+
</xs:element>
|
207
|
+
<xs:element name="Region" type="xs:string" minOccurs="0">
|
208
|
+
<xs:annotation>
|
209
|
+
<xs:documentation>Two character state code of contact's current residence</xs:documentation>
|
210
|
+
</xs:annotation>
|
211
|
+
</xs:element>
|
212
|
+
<xs:element name="CountryCode" type="xs:string" minOccurs="0"/>
|
213
|
+
<xs:element name="YearsAcquainted" type="xs:integer" minOccurs="0">
|
214
|
+
<xs:annotation>
|
215
|
+
<xs:documentation>Number of years the reference has known the search subject.</xs:documentation>
|
216
|
+
</xs:annotation>
|
217
|
+
</xs:element>
|
218
|
+
<xs:element name="ContactMethod" minOccurs="0">
|
219
|
+
<xs:annotation>
|
220
|
+
<xs:documentation>Method of contacting reference.</xs:documentation>
|
221
|
+
</xs:annotation>
|
222
|
+
<xs:complexType>
|
223
|
+
<xs:sequence>
|
224
|
+
<xs:element name="Telephone" minOccurs="0" maxOccurs="2">
|
225
|
+
<xs:complexType>
|
226
|
+
<xs:sequence>
|
227
|
+
<xs:element name="Number" type="xs:string" minOccurs="0"/>
|
228
|
+
<xs:element name="Extension" type="xs:string" minOccurs="0"/>
|
229
|
+
</xs:sequence>
|
230
|
+
</xs:complexType>
|
231
|
+
</xs:element>
|
232
|
+
<xs:element name="InternetEmailAddress" type="xs:string" minOccurs="0">
|
233
|
+
<xs:annotation>
|
234
|
+
<xs:documentation>Email Contact information.</xs:documentation>
|
235
|
+
</xs:annotation>
|
236
|
+
</xs:element>
|
237
|
+
</xs:sequence>
|
238
|
+
</xs:complexType>
|
239
|
+
</xs:element>
|
240
|
+
</xs:sequence>
|
241
|
+
</xs:complexType>
|
242
|
+
<xs:complexType name="OtherType">
|
243
|
+
<xs:annotation>
|
244
|
+
<xs:documentation>Other type used to collect information for other screenings.</xs:documentation>
|
245
|
+
</xs:annotation>
|
246
|
+
<xs:sequence>
|
247
|
+
<xs:element name="PersonName" type="PersonNameType" minOccurs="0"/>
|
248
|
+
<xs:element name="Description" type="xs:string" minOccurs="0">
|
249
|
+
<xs:annotation>
|
250
|
+
<xs:documentation>Additional information needed to execute the other screening. Maximum of 255 characters.</xs:documentation>
|
251
|
+
</xs:annotation>
|
252
|
+
</xs:element>
|
253
|
+
</xs:sequence>
|
254
|
+
</xs:complexType>
|
255
|
+
<xs:complexType name="PublicRecordType">
|
256
|
+
<xs:annotation>
|
257
|
+
<xs:documentation>Used to collect and display information about a public record screening.</xs:documentation>
|
258
|
+
</xs:annotation>
|
259
|
+
<xs:sequence>
|
260
|
+
<xs:element name="PersonName" type="PersonNameType" minOccurs="0"/>
|
261
|
+
<xs:element name="PostalAddress" type="PostalAddressType" minOccurs="0"/>
|
262
|
+
</xs:sequence>
|
263
|
+
</xs:complexType>
|
264
|
+
<xs:complexType name="CriminalCaseType">
|
265
|
+
<xs:annotation>
|
266
|
+
<xs:documentation>Admitted criminal information</xs:documentation>
|
267
|
+
</xs:annotation>
|
268
|
+
<xs:sequence>
|
269
|
+
<xs:element name="ChargeOrComplaint" type="xs:string">
|
270
|
+
<xs:annotation>
|
271
|
+
<xs:documentation>Criminal charge or complaint - example: ASSAULT</xs:documentation>
|
272
|
+
</xs:annotation>
|
273
|
+
</xs:element>
|
274
|
+
<xs:element name="ChargeTypeClassification">
|
275
|
+
<xs:simpleType>
|
276
|
+
<xs:restriction base="xs:NMTOKEN">
|
277
|
+
<xs:enumeration value="felony"/>
|
278
|
+
<xs:enumeration value="forfeiture"/>
|
279
|
+
<xs:enumeration value="infraction"/>
|
280
|
+
<xs:enumeration value="misdemeanor"/>
|
281
|
+
<xs:enumeration value="pettyOffence"/>
|
282
|
+
<xs:enumeration value="summary"/>
|
283
|
+
<xs:enumeration value="traffic"/>
|
284
|
+
<xs:enumeration value="violation"/>
|
285
|
+
<xs:enumeration value="capias"/>
|
286
|
+
<xs:enumeration value="showCause"/>
|
287
|
+
<xs:enumeration value="ordinanceViolation"/>
|
288
|
+
<xs:enumeration value="sealed"/>
|
289
|
+
<xs:enumeration value="felonyReducedToMisdemeanor"/>
|
290
|
+
<xs:enumeration value="misdemeanorReducedToViolation"/>
|
291
|
+
<xs:enumeration value="unknown"/>
|
292
|
+
</xs:restriction>
|
293
|
+
</xs:simpleType>
|
294
|
+
</xs:element>
|
295
|
+
<xs:element name="ChargeDescription" type="xs:string"/>
|
296
|
+
</xs:sequence>
|
297
|
+
</xs:complexType>
|
298
|
+
<xs:complexType name="SchoolOrInstitutionType">
|
299
|
+
<xs:annotation>
|
300
|
+
<xs:documentation>Education information.</xs:documentation>
|
301
|
+
</xs:annotation>
|
302
|
+
<xs:sequence>
|
303
|
+
<xs:element name="SchoolName" type="xs:string">
|
304
|
+
<xs:annotation>
|
305
|
+
<xs:documentation>Name of the school. Maximum of 50 characters.</xs:documentation>
|
306
|
+
</xs:annotation>
|
307
|
+
</xs:element>
|
308
|
+
<xs:element name="LocalLangSchoolName" type="xs:string" minOccurs="0">
|
309
|
+
<xs:annotation>
|
310
|
+
<xs:documentation>Name of the school in local language. Maximum of 50 characters.</xs:documentation>
|
311
|
+
</xs:annotation>
|
312
|
+
</xs:element>
|
313
|
+
<xs:element name="LocationSummary" type="PostalAddressType" minOccurs="0">
|
314
|
+
<xs:annotation>
|
315
|
+
<xs:documentation>Address of employer</xs:documentation>
|
316
|
+
</xs:annotation>
|
317
|
+
</xs:element>
|
318
|
+
<xs:element name="ContactInfo" type="ContactInfoType" minOccurs="0">
|
319
|
+
<xs:annotation>
|
320
|
+
<xs:documentation>Used to collect the school's phone number.</xs:documentation>
|
321
|
+
</xs:annotation>
|
322
|
+
</xs:element>
|
323
|
+
<xs:element name="Degree" minOccurs="0">
|
324
|
+
<xs:annotation>
|
325
|
+
<xs:documentation>Degree information</xs:documentation>
|
326
|
+
</xs:annotation>
|
327
|
+
<xs:complexType>
|
328
|
+
<xs:sequence>
|
329
|
+
<xs:element name="DegreeMajor" minOccurs="0">
|
330
|
+
<xs:complexType>
|
331
|
+
<xs:sequence>
|
332
|
+
<xs:element name="Name" type="xs:string" minOccurs="0" maxOccurs="unbounded">
|
333
|
+
<xs:annotation>
|
334
|
+
<xs:documentation>The major field of study. Mutliple majors should be listed in separate elements. Maximum of 50 characters.</xs:documentation>
|
335
|
+
</xs:annotation>
|
336
|
+
</xs:element>
|
337
|
+
</xs:sequence>
|
338
|
+
</xs:complexType>
|
339
|
+
</xs:element>
|
340
|
+
<xs:element name="DegreeMeasure">
|
341
|
+
<xs:complexType>
|
342
|
+
<xs:sequence>
|
343
|
+
<xs:element name="EducationalMeasure">
|
344
|
+
<xs:complexType>
|
345
|
+
<xs:sequence>
|
346
|
+
<xs:element name="MeasureSystem">
|
347
|
+
<xs:annotation>
|
348
|
+
<xs:documentation>Measure System is GPA</xs:documentation>
|
349
|
+
</xs:annotation>
|
350
|
+
</xs:element>
|
351
|
+
<xs:element name="MeasureValue">
|
352
|
+
<xs:complexType>
|
353
|
+
<xs:sequence>
|
354
|
+
<xs:element name="NumericValue" type="xs:string"/>
|
355
|
+
</xs:sequence>
|
356
|
+
</xs:complexType>
|
357
|
+
</xs:element>
|
358
|
+
</xs:sequence>
|
359
|
+
</xs:complexType>
|
360
|
+
</xs:element>
|
361
|
+
</xs:sequence>
|
362
|
+
</xs:complexType>
|
363
|
+
</xs:element>
|
364
|
+
<xs:element name="DegreeDate" type="DateOrEmptyType" minOccurs="0"/>
|
365
|
+
</xs:sequence>
|
366
|
+
<xs:attribute name="degreeType" type="DegreeType">
|
367
|
+
<xs:annotation>
|
368
|
+
<xs:documentation>Degree of certificate awarded. Maximum of 20 characters. Example: BA</xs:documentation>
|
369
|
+
</xs:annotation>
|
370
|
+
</xs:attribute>
|
371
|
+
</xs:complexType>
|
372
|
+
</xs:element>
|
373
|
+
<xs:element name="DatesOfAttendance" type="DateRangeType" minOccurs="0" maxOccurs="unbounded">
|
374
|
+
<xs:annotation>
|
375
|
+
<xs:documentation>Range of dates of school attendance</xs:documentation>
|
376
|
+
</xs:annotation>
|
377
|
+
</xs:element>
|
378
|
+
<xs:element name="PersonName" type="PersonNameType" minOccurs="0">
|
379
|
+
<xs:annotation>
|
380
|
+
<xs:documentation>Name subject used at school if different from current name.</xs:documentation>
|
381
|
+
</xs:annotation>
|
382
|
+
</xs:element>
|
383
|
+
</xs:sequence>
|
384
|
+
<xs:attribute name="schoolType">
|
385
|
+
<xs:annotation>
|
386
|
+
<xs:documentation>Used to distinguish different types of educational institutions</xs:documentation>
|
387
|
+
</xs:annotation>
|
388
|
+
<xs:simpleType>
|
389
|
+
<xs:restriction base="xs:NMTOKEN">
|
390
|
+
<xs:enumeration value="highschool"/>
|
391
|
+
<xs:enumeration value="secondary"/>
|
392
|
+
<xs:enumeration value="trade"/>
|
393
|
+
<xs:enumeration value="community"/>
|
394
|
+
<xs:enumeration value="college"/>
|
395
|
+
<xs:enumeration value="technicalCollege"/>
|
396
|
+
<xs:enumeration value="postGraduate"/>
|
397
|
+
<xs:enumeration value="GED"/>
|
398
|
+
<xs:enumeration value="other"/>
|
399
|
+
</xs:restriction>
|
400
|
+
</xs:simpleType>
|
401
|
+
</xs:attribute>
|
402
|
+
</xs:complexType>
|
403
|
+
<xs:complexType name="DateRangeType">
|
404
|
+
<xs:sequence>
|
405
|
+
<xs:element name="Location" type="xs:string" minOccurs="0"/>
|
406
|
+
<xs:element name="StartDate" type="DateOrEmptyType" minOccurs="0"/>
|
407
|
+
<xs:element name="EndDate" type="DateOrEmptyType" minOccurs="0"/>
|
408
|
+
</xs:sequence>
|
409
|
+
</xs:complexType>
|
410
|
+
<xs:complexType name="DrugType">
|
411
|
+
<xs:annotation>
|
412
|
+
<xs:documentation>Contains drug test information</xs:documentation>
|
413
|
+
</xs:annotation>
|
414
|
+
<xs:sequence>
|
415
|
+
<xs:element name="SpecimenIdNumber">
|
416
|
+
<xs:annotation>
|
417
|
+
<xs:documentation>Contains specimen id number</xs:documentation>
|
418
|
+
</xs:annotation>
|
419
|
+
</xs:element>
|
420
|
+
<xs:element name="DrugTestInitiatedDate"
|
421
|
+
type="DateTimeTypeWithZone" minOccurs="0" maxOccurs="1">
|
422
|
+
<xs:annotation>
|
423
|
+
<xs:documentation>
|
424
|
+
Contains Drug Test Initiated Date
|
425
|
+
</xs:documentation>
|
426
|
+
</xs:annotation>
|
427
|
+
</xs:element>
|
428
|
+
</xs:sequence>
|
429
|
+
</xs:complexType>
|
430
|
+
<xs:complexType name="AlcoholType">
|
431
|
+
<xs:annotation>
|
432
|
+
<xs:documentation>Contains alcohol test information</xs:documentation>
|
433
|
+
</xs:annotation>
|
434
|
+
</xs:complexType>
|
435
|
+
<xs:complexType name="PhysicalType">
|
436
|
+
<xs:annotation>
|
437
|
+
<xs:documentation>Contains physical test information</xs:documentation>
|
438
|
+
</xs:annotation>
|
439
|
+
</xs:complexType>
|
440
|
+
<xs:complexType name="EmployerType">
|
441
|
+
<xs:annotation>
|
442
|
+
<xs:documentation>Contains previous and current employment information</xs:documentation>
|
443
|
+
</xs:annotation>
|
444
|
+
<xs:sequence>
|
445
|
+
<xs:element name="EmployerName" type="xs:string">
|
446
|
+
<xs:annotation>
|
447
|
+
<xs:documentation>Employer name. Maximum of 50 characters.</xs:documentation>
|
448
|
+
</xs:annotation>
|
449
|
+
</xs:element>
|
450
|
+
<xs:element name="LocalLangEmployerName" type="xs:string" minOccurs="0">
|
451
|
+
<xs:annotation>
|
452
|
+
<xs:documentation>Employer name in local language. Maximum of 50 characters.</xs:documentation>
|
453
|
+
</xs:annotation>
|
454
|
+
</xs:element>
|
455
|
+
<xs:element name="EmployeeID" type="xs:string" minOccurs="0">
|
456
|
+
<xs:annotation>
|
457
|
+
<xs:documentation>Employee ID. Maximum of 50 characters.</xs:documentation>
|
458
|
+
</xs:annotation>
|
459
|
+
</xs:element>
|
460
|
+
<xs:element name="EmployerAddress" type="PostalAddressType" minOccurs="0">
|
461
|
+
<xs:annotation>
|
462
|
+
<xs:documentation>Address of employer</xs:documentation>
|
463
|
+
</xs:annotation>
|
464
|
+
</xs:element>
|
465
|
+
<xs:element name="Title" type="xs:string" minOccurs="0">
|
466
|
+
<xs:annotation>
|
467
|
+
<xs:documentation>Title of the position held. Maximum of 50 characters.</xs:documentation>
|
468
|
+
</xs:annotation>
|
469
|
+
</xs:element>
|
470
|
+
<xs:element name="Department" type="xs:string">
|
471
|
+
<xs:annotation>
|
472
|
+
<xs:documentation>Department Name.</xs:documentation>
|
473
|
+
</xs:annotation>
|
474
|
+
</xs:element>
|
475
|
+
<xs:element name="DatesOfEmployment" type="DateRangeType" minOccurs="0" maxOccurs="unbounded">
|
476
|
+
<xs:annotation>
|
477
|
+
<xs:documentation>Date ranges of employment</xs:documentation>
|
478
|
+
</xs:annotation>
|
479
|
+
</xs:element>
|
480
|
+
<xs:element name="Compensation" minOccurs="0">
|
481
|
+
<xs:complexType>
|
482
|
+
<xs:simpleContent>
|
483
|
+
<xs:extension base="xs:float">
|
484
|
+
<xs:attribute name="intervalType" use="required">
|
485
|
+
<xs:simpleType>
|
486
|
+
<xs:restriction base="xs:NMTOKEN">
|
487
|
+
<xs:enumeration value="yearly"/>
|
488
|
+
<xs:enumeration value="bi-weekly"/>
|
489
|
+
<xs:enumeration value="daily"/>
|
490
|
+
<xs:enumeration value="hourly"/>
|
491
|
+
<xs:enumeration value="monthly"/>
|
492
|
+
<xs:enumeration value="semi-monthly"/>
|
493
|
+
<xs:enumeration value="weekly"/>
|
494
|
+
<xs:enumeration value="other"/>
|
495
|
+
</xs:restriction>
|
496
|
+
</xs:simpleType>
|
497
|
+
</xs:attribute>
|
498
|
+
<xs:attribute name="currency" type="xs:string"/>
|
499
|
+
</xs:extension>
|
500
|
+
</xs:simpleContent>
|
501
|
+
</xs:complexType>
|
502
|
+
</xs:element>
|
503
|
+
<xs:element name="ContactInfo" type="ContactInfoType" minOccurs="0">
|
504
|
+
<xs:annotation>
|
505
|
+
<xs:documentation>Contact information</xs:documentation>
|
506
|
+
</xs:annotation>
|
507
|
+
</xs:element>
|
508
|
+
<xs:element name="ReasonForLeaving" type="xs:string" minOccurs="0">
|
509
|
+
<xs:annotation>
|
510
|
+
<xs:documentation>Reason a person left a prior position. Maximum of 255 characters.</xs:documentation>
|
511
|
+
</xs:annotation>
|
512
|
+
</xs:element>
|
513
|
+
<xs:element name="PermissionToContact" type="xs:boolean" minOccurs="0">
|
514
|
+
<xs:annotation>
|
515
|
+
<xs:documentation>The subject agrees/does not agree that the organization may be contacted to verify position related details</xs:documentation>
|
516
|
+
</xs:annotation>
|
517
|
+
</xs:element>
|
518
|
+
</xs:sequence>
|
519
|
+
<xs:attribute name="type" use="required">
|
520
|
+
<xs:simpleType>
|
521
|
+
<xs:restriction base="xs:NMTOKEN">
|
522
|
+
<xs:enumeration value="current"/>
|
523
|
+
<xs:enumeration value="prior"/>
|
524
|
+
</xs:restriction>
|
525
|
+
</xs:simpleType>
|
526
|
+
</xs:attribute>
|
527
|
+
</xs:complexType>
|
528
|
+
<xs:complexType name="ContactInfoType">
|
529
|
+
<xs:annotation>
|
530
|
+
<xs:documentation>Contact information</xs:documentation>
|
531
|
+
</xs:annotation>
|
532
|
+
<xs:sequence>
|
533
|
+
<xs:element name="PersonName" type="xs:string" minOccurs="0">
|
534
|
+
<xs:annotation>
|
535
|
+
<xs:documentation>Contact name. Maximum of 90 characters.</xs:documentation>
|
536
|
+
</xs:annotation>
|
537
|
+
</xs:element>
|
538
|
+
<xs:element name="InternetEmailAddress" type="xs:string" minOccurs="0">
|
539
|
+
<xs:annotation>
|
540
|
+
<xs:documentation>Email Contact information.</xs:documentation>
|
541
|
+
</xs:annotation>
|
542
|
+
</xs:element>
|
543
|
+
<xs:element name="ContactMethod" type="ContactMethodType" minOccurs="0"/>
|
544
|
+
</xs:sequence>
|
545
|
+
</xs:complexType>
|
546
|
+
<xs:complexType name="GovernmentIdType">
|
547
|
+
<xs:annotation>
|
548
|
+
<xs:documentation>Government id value</xs:documentation>
|
549
|
+
</xs:annotation>
|
550
|
+
<xs:simpleContent>
|
551
|
+
<xs:extension base="xs:string">
|
552
|
+
<xs:attribute name="issuingCountry" type="xs:string">
|
553
|
+
<xs:annotation>
|
554
|
+
<xs:documentation>This is the ISO Country code.
|
555
|
+
</xs:documentation>
|
556
|
+
</xs:annotation>
|
557
|
+
</xs:attribute>
|
558
|
+
<xs:attribute name="issuingAuthority" use="required">
|
559
|
+
<xs:annotation>
|
560
|
+
<xs:documentation>Entity that issued the id
|
561
|
+
</xs:documentation>
|
562
|
+
</xs:annotation>
|
563
|
+
<xs:simpleType>
|
564
|
+
<xs:restriction base="xs:NMTOKEN">
|
565
|
+
<xs:enumeration value="SSN" />
|
566
|
+
<xs:enumeration value="GOVT" />
|
567
|
+
<xs:enumeration value="PASSPORT" />
|
568
|
+
</xs:restriction>
|
569
|
+
</xs:simpleType>
|
570
|
+
</xs:attribute>
|
571
|
+
</xs:extension>
|
572
|
+
</xs:simpleContent>
|
573
|
+
</xs:complexType>
|
574
|
+
<xs:complexType name="DemographicDetailType">
|
575
|
+
<xs:annotation>
|
576
|
+
<xs:documentation>Demographic information</xs:documentation>
|
577
|
+
</xs:annotation>
|
578
|
+
<xs:sequence>
|
579
|
+
<xs:element name="HasSSN" minOccurs="0">
|
580
|
+
<xs:simpleType>
|
581
|
+
<xs:restriction base="xs:NMTOKEN">
|
582
|
+
<xs:enumeration value="Y"/>
|
583
|
+
<xs:enumeration value="N"/>
|
584
|
+
</xs:restriction>
|
585
|
+
</xs:simpleType>
|
586
|
+
</xs:element>
|
587
|
+
<xs:element name="GovernmentId" type="GovernmentIdType" />
|
588
|
+
<xs:element name="DateOfBirth" type="DateOrEmptyType" minOccurs="0"/>
|
589
|
+
<xs:element name="Race" type="xs:string" minOccurs="0"/>
|
590
|
+
<xs:element name="Gender" minOccurs="0">
|
591
|
+
<xs:simpleType>
|
592
|
+
<xs:restriction base="xs:NMTOKEN">
|
593
|
+
<xs:enumeration value="M"/>
|
594
|
+
<xs:enumeration value="F"/>
|
595
|
+
</xs:restriction>
|
596
|
+
</xs:simpleType>
|
597
|
+
</xs:element>
|
598
|
+
<xs:element name="ApplicantType" minOccurs="0">
|
599
|
+
<xs:simpleType>
|
600
|
+
<xs:restriction base="xs:NMTOKEN">
|
601
|
+
<xs:enumeration value="E"/>
|
602
|
+
<xs:enumeration value="V"/>
|
603
|
+
</xs:restriction>
|
604
|
+
</xs:simpleType>
|
605
|
+
</xs:element>
|
606
|
+
</xs:sequence>
|
607
|
+
</xs:complexType>
|
608
|
+
<xs:complexType name="ContactMethodType">
|
609
|
+
<xs:annotation>
|
610
|
+
<xs:documentation>Methods to contact a person</xs:documentation>
|
611
|
+
</xs:annotation>
|
612
|
+
<xs:sequence>
|
613
|
+
<xs:element name="Telephone" minOccurs="0" maxOccurs="unbounded">
|
614
|
+
<xs:complexType>
|
615
|
+
<xs:sequence>
|
616
|
+
<xs:element name="Number" type="xs:string" minOccurs="0"/>
|
617
|
+
<xs:element name="Extension" type="xs:string" minOccurs="0"/>
|
618
|
+
</xs:sequence>
|
619
|
+
<xs:attribute name="type">
|
620
|
+
<xs:simpleType>
|
621
|
+
<xs:restriction base="xs:NMTOKEN">
|
622
|
+
<xs:enumeration value="fax"/>
|
623
|
+
<xs:enumeration value="home"/>
|
624
|
+
<xs:enumeration value="mobile"/>
|
625
|
+
<xs:enumeration value="work"/>
|
626
|
+
</xs:restriction>
|
627
|
+
</xs:simpleType>
|
628
|
+
</xs:attribute>
|
629
|
+
</xs:complexType>
|
630
|
+
</xs:element>
|
631
|
+
<xs:element name="InternetEmailAddress" type="xs:string" minOccurs="0"/>
|
632
|
+
<xs:element name="PostalAddress" type="PostalAddressType" minOccurs="0"/>
|
633
|
+
</xs:sequence>
|
634
|
+
</xs:complexType>
|
635
|
+
<xs:complexType name="PackageInformationType">
|
636
|
+
<xs:sequence>
|
637
|
+
<xs:element name="PackageId" minOccurs="0">
|
638
|
+
<xs:annotation>
|
639
|
+
<xs:documentation>ChoicePoint assigned number identifying which background screenings to run</xs:documentation>
|
640
|
+
</xs:annotation>
|
641
|
+
<xs:simpleType>
|
642
|
+
<xs:restriction base="xs:string">
|
643
|
+
<xs:pattern value="[0-9][0-9][0-9][0-9]"/>
|
644
|
+
</xs:restriction>
|
645
|
+
</xs:simpleType>
|
646
|
+
</xs:element>
|
647
|
+
<xs:element name="PositionAppliedFor" type="xs:string" minOccurs="0">
|
648
|
+
<xs:annotation>
|
649
|
+
<xs:documentation>Name of the position the subject is applying for. Maximum of 50 characters.</xs:documentation>
|
650
|
+
</xs:annotation>
|
651
|
+
</xs:element>
|
652
|
+
<xs:element name="Compensation" minOccurs="0">
|
653
|
+
<xs:complexType>
|
654
|
+
<xs:simpleContent>
|
655
|
+
<xs:extension base="xs:string">
|
656
|
+
<xs:attribute name="intervalType" use="required">
|
657
|
+
<xs:simpleType>
|
658
|
+
<xs:restriction base="xs:NMTOKEN">
|
659
|
+
<xs:enumeration value="yearly"/>
|
660
|
+
<xs:enumeration value="bi-weekly"/>
|
661
|
+
<xs:enumeration value="daily"/>
|
662
|
+
<xs:enumeration value="hourly"/>
|
663
|
+
<xs:enumeration value="monthly"/>
|
664
|
+
<xs:enumeration value="semi-monthly"/>
|
665
|
+
<xs:enumeration value="weekly"/>
|
666
|
+
<xs:enumeration value="other"/>
|
667
|
+
</xs:restriction>
|
668
|
+
</xs:simpleType>
|
669
|
+
</xs:attribute>
|
670
|
+
<xs:attribute name="currency" type="xs:string"/>
|
671
|
+
</xs:extension>
|
672
|
+
</xs:simpleContent>
|
673
|
+
</xs:complexType>
|
674
|
+
</xs:element>
|
675
|
+
<xs:element name="SpecialInstructions" type="xs:string" minOccurs="0">
|
676
|
+
<xs:annotation>
|
677
|
+
<xs:documentation>Special instructions for this candidates background search. Maximum of 4000 characters.</xs:documentation>
|
678
|
+
</xs:annotation>
|
679
|
+
</xs:element>
|
680
|
+
<xs:element name="CopyToApplicant" type="xs:string" minOccurs="0">
|
681
|
+
<xs:annotation>
|
682
|
+
<xs:documentation>Applicant may request to receive a detailed results report.</xs:documentation>
|
683
|
+
</xs:annotation>
|
684
|
+
</xs:element>
|
685
|
+
<xs:element name="ClientReferences" type="ClientReferenceType" minOccurs="0"/>
|
686
|
+
<xs:element name="UserDefinedFields" type="UserDefinedFieldType" minOccurs="0"/>
|
687
|
+
<xs:element name="Quotebacks" type="QuotebackType" minOccurs="0">
|
688
|
+
<xs:annotation>
|
689
|
+
<xs:documentation>Information meaningful to the requester that will be returned on all results</xs:documentation>
|
690
|
+
</xs:annotation>
|
691
|
+
</xs:element>
|
692
|
+
<xs:element name="ProviderReferences" type="ProviderReferenceType" minOccurs="0"/>
|
693
|
+
<xs:element name="RequestorBackup" type="xs:string" minOccurs="0">
|
694
|
+
<xs:annotation>
|
695
|
+
<xs:documentation>Requestor backup name. Maximum of 50 characters.</xs:documentation>
|
696
|
+
</xs:annotation>
|
697
|
+
</xs:element>
|
698
|
+
<xs:element name="OrderAccount" type="OrderAccountType" minOccurs="0">
|
699
|
+
<xs:annotation>
|
700
|
+
<xs:documentation>Allow the requestor to authenticate with one account/userid and order for a different account/userid</xs:documentation>
|
701
|
+
</xs:annotation>
|
702
|
+
</xs:element>
|
703
|
+
<xs:element name="ReturnLink" type="xs:string" minOccurs="0" maxOccurs="1">
|
704
|
+
<xs:annotation>
|
705
|
+
<xs:documentation>Return link used at the completion of a two-step ordering process</xs:documentation>
|
706
|
+
</xs:annotation>
|
707
|
+
</xs:element>
|
708
|
+
</xs:sequence>
|
709
|
+
</xs:complexType>
|
710
|
+
<xs:complexType name="ProviderReferenceType">
|
711
|
+
<xs:sequence>
|
712
|
+
<xs:element name="ProviderReference" type="xs:string" >
|
713
|
+
</xs:element>
|
714
|
+
</xs:sequence>
|
715
|
+
</xs:complexType>
|
716
|
+
<xs:complexType name="ScreeningStatusType">
|
717
|
+
<xs:annotation>
|
718
|
+
<xs:documentation>Status of a screening or entire background check</xs:documentation>
|
719
|
+
</xs:annotation>
|
720
|
+
<xs:sequence>
|
721
|
+
<xs:element name="OrderStatus" minOccurs="0">
|
722
|
+
<xs:simpleType>
|
723
|
+
<xs:restriction base="xs:NMTOKEN">
|
724
|
+
<xs:enumeration value="Completed"/>
|
725
|
+
<xs:enumeration value="Preliminary"/>
|
726
|
+
<xs:enumeration value="Duplicate"/>
|
727
|
+
<xs:enumeration value="UnderConstruction"/>
|
728
|
+
<xs:enumeration value="Disabled"/>
|
729
|
+
<xs:enumeration value="Deferred"/>
|
730
|
+
<xs:enumeration value="Delayed"/>
|
731
|
+
<xs:enumeration value="Pending"/>
|
732
|
+
<xs:enumeration value="UnexpectedStatus"/>
|
733
|
+
<xs:enumeration value="InProgress"/>
|
734
|
+
<xs:enumeration value="Hold"/>
|
735
|
+
<xs:enumeration value="Cancelled"/>
|
736
|
+
<xs:enumeration value="x:Disabled"/>
|
737
|
+
<xs:enumeration value="x:Deferred"/>
|
738
|
+
<xs:enumeration value="x:Duplicate"/>
|
739
|
+
</xs:restriction>
|
740
|
+
</xs:simpleType>
|
741
|
+
</xs:element>
|
742
|
+
<xs:element name="ResultStatus" minOccurs="0">
|
743
|
+
<xs:annotation>
|
744
|
+
<xs:documentation>Result status of a screening or entire background check</xs:documentation>
|
745
|
+
</xs:annotation>
|
746
|
+
<xs:simpleType>
|
747
|
+
<xs:restriction base="xs:NMTOKEN">
|
748
|
+
<xs:enumeration value="Pass"/>
|
749
|
+
<xs:enumeration value="Review"/>
|
750
|
+
<xs:enumeration value="Fail"/>
|
751
|
+
<xs:enumeration value="Negative"/>
|
752
|
+
<xs:enumeration value="NegativeDilute"/>
|
753
|
+
<xs:enumeration value="Positive"/>
|
754
|
+
<xs:enumeration value="Cancel"/>
|
755
|
+
<xs:enumeration value="HoldMRO"/>
|
756
|
+
<xs:enumeration value="Unverified"/>
|
757
|
+
<xs:enumeration value="PassWithRestrictions"/>
|
758
|
+
<xs:enumeration value="Scheduled"/>
|
759
|
+
<xs:enumeration value="Rescheduled"/>
|
760
|
+
<xs:enumeration value="NoShow"/>
|
761
|
+
<xs:enumeration value="Collected"/>
|
762
|
+
<xs:enumeration value="PartiallyComplete"/>
|
763
|
+
<xs:enumeration value="UnexpectedResult"/>
|
764
|
+
</xs:restriction>
|
765
|
+
</xs:simpleType>
|
766
|
+
</xs:element>
|
767
|
+
<xs:element name="Score" minOccurs="0">
|
768
|
+
<xs:annotation>
|
769
|
+
<xs:documentation>The score of the background check</xs:documentation>
|
770
|
+
</xs:annotation>
|
771
|
+
<xs:simpleType>
|
772
|
+
<xs:restriction base="xs:NMTOKEN">
|
773
|
+
<xs:enumeration value="Decisional"/>
|
774
|
+
<xs:enumeration value="Eligible"/>
|
775
|
+
<xs:enumeration value="Ineligible"/>
|
776
|
+
<xs:enumeration value="RetainInPlace"/>
|
777
|
+
<xs:enumeration value="Cancelled"/>
|
778
|
+
<xs:enumeration value="UnexpectedScore"/>
|
779
|
+
<xs:enumeration value="Preliminary"/>
|
780
|
+
</xs:restriction>
|
781
|
+
</xs:simpleType>
|
782
|
+
</xs:element>
|
783
|
+
<xs:element name="ScoreStatus" type="xs:string" minOccurs="0">
|
784
|
+
<xs:annotation>
|
785
|
+
<xs:documentation>Customers Custom Status if present</xs:documentation>
|
786
|
+
</xs:annotation>
|
787
|
+
</xs:element>
|
788
|
+
</xs:sequence>
|
789
|
+
</xs:complexType>
|
790
|
+
<xs:complexType name="ScreeningType">
|
791
|
+
<xs:sequence>
|
792
|
+
<xs:element name="ScreeningStatus" type="ScreeningStatusType" minOccurs="0"/>
|
793
|
+
<xs:element name="Alerts" minOccurs="0">
|
794
|
+
<xs:complexType>
|
795
|
+
<xs:sequence>
|
796
|
+
<xs:element name="Alert" type="AlertType" minOccurs="0" maxOccurs="unbounded"/>
|
797
|
+
</xs:sequence>
|
798
|
+
</xs:complexType>
|
799
|
+
</xs:element>
|
800
|
+
<xs:element name="ErrorReport" type="ErrorReportType" minOccurs="0" maxOccurs="unbounded"/>
|
801
|
+
<xs:element name="Employer" type="EmployerType" minOccurs="0"/>
|
802
|
+
<xs:element name="SchoolOrInstitution" type="SchoolOrInstitutionType" minOccurs="0"/>
|
803
|
+
<xs:element name="Branch" type="xs:string" minOccurs="0"/>
|
804
|
+
<xs:element name="Reference" type="ReferencesType" minOccurs="0"/>
|
805
|
+
<xs:element name="PostalAddress" type="PostalAddressType" minOccurs="0" maxOccurs="unbounded"/>
|
806
|
+
<xs:element name="License" type="LicenseType" minOccurs="0"/>
|
807
|
+
<xs:element name="SearchDrugs" type="DrugType" minOccurs="0"/>
|
808
|
+
<xs:element name="SearchAlcohol" type="AlcoholType" minOccurs="0"/>
|
809
|
+
<xs:element name="SearchPlysical" type="PhysicalType" minOccurs="0"/>
|
810
|
+
<xs:element name="Other" type="OtherType" minOccurs="0"/>
|
811
|
+
<xs:element name="PublicRecord" type="PublicRecordType" minOccurs="0"/>
|
812
|
+
<xs:element name="EVTN" type="EVTNType" />
|
813
|
+
<xs:element name="NCRP" type="NCRPType" />
|
814
|
+
<xs:element name="PRI-FAM" type="NCRPType" />
|
815
|
+
<xs:element name="PRI-FFM" type="NCRPType" />
|
816
|
+
<xs:element name="PRIOFAC" type="NCRPType" />
|
817
|
+
<xs:element name="PRI-ADD" type="NCRPType" />
|
818
|
+
<xs:element name="SSNV" type="SSNVerificationType"/>
|
819
|
+
<xs:element name="SSNVALIDATION" type="SSNValidationType" />
|
820
|
+
<xs:element name="ScreeningResults" type="ScreeningResultsType" minOccurs="0"/>
|
821
|
+
</xs:sequence>
|
822
|
+
<xs:attribute name="type" use="required">
|
823
|
+
<xs:annotation>
|
824
|
+
<xs:documentation>Identifies the type of the screening:
|
825
|
+
CVR - Certification
|
826
|
+
CVR-INS - State Insurance Check
|
827
|
+
ED - Education
|
828
|
+
FEMP - Former Employment
|
829
|
+
FIN - Financial Report/Credit
|
830
|
+
GSA - Database Searches
|
831
|
+
MIL - Military Records
|
832
|
+
MVR - Motor Vehicle Report
|
833
|
+
OTHER - Other Component
|
834
|
+
PEMP - Present Employment
|
835
|
+
PRI-ADD - Public Record Additional Record Type
|
836
|
+
PRIOFAC - Office of Foreign Asset Control
|
837
|
+
PRI-FDA - FDA Sanctions List
|
838
|
+
PRICPGS - ChoicePoint Global Sanction Search
|
839
|
+
PRINSOS - National Sex Offender Registry Search (Justice Department website)
|
840
|
+
PRI-OIG - Office of Inspector General
|
841
|
+
PRI-SEC - Securities and Exchange Commission
|
842
|
+
PRICDLS - Commercial Driver's License Search
|
843
|
+
PRI-MMS - Media Search
|
844
|
+
PRI-GSA - Health and Human Services, Office of Inspector General List of Excluded Individuals, and Government Services Administration's Excluded Parties List System
|
845
|
+
PRI-SEX - Sexual Offender Search
|
846
|
+
PRIFAC1 - Fraud and Abuse Control Information System - Level 1
|
847
|
+
PRIFAC2 - Fraud and Abuse Control Information System - Level 2
|
848
|
+
PRIFAC3 - Fraud and Abuse Control Information System - Level 3
|
849
|
+
PRIFC1O - Fraud and Abuse Control Plus OFAC Level 1
|
850
|
+
PRIFC2O - Fraud and Abuse Control Plus OFAC Level 2
|
851
|
+
PRIFC3O - Fraud and Abuse Control Plus OFAC Level 3
|
852
|
+
PRIOIAL - State Officer of Inspector General - Alabama
|
853
|
+
PRIOICA - State Officer of Inspector General - California
|
854
|
+
PRIOIGA - State Officer of Inspector General - Georgia
|
855
|
+
PRIOIID - State Officer of Inspector General - Idaho
|
856
|
+
PRIOIIL - State Officer of Inspector General - Illinois
|
857
|
+
PRIOIKS - State Officer of Inspector General - Kansas
|
858
|
+
PRIOINJ - State Officer of Inspector General - New Jersey
|
859
|
+
PRIOINY - State Officer of Inspector General - New York
|
860
|
+
PRIOIPA - State Officer of Inspector General - Pennsylvania
|
861
|
+
PRIOITX - State Officer of Inspector General - Texas
|
862
|
+
PRI-CR - Statewide Criminal
|
863
|
+
PRI-EXP -
|
864
|
+
PRI-FAM - County Seat Felony and Misdemeanor
|
865
|
+
PRI-FFM - Federal Felony And Misdemeanor
|
866
|
+
PRI-FIM - Felony Including Misdemeanor
|
867
|
+
PRI-FM - Felony And Misdemeanor
|
868
|
+
PRI-FRI - Felony Record Information - County Felony
|
869
|
+
PRI-MRI - Misdemeanor Record Information
|
870
|
+
PRICPCR -
|
871
|
+
PRINCRF - National Criminal File
|
872
|
+
PRINCRP - National Criminal File Plus
|
873
|
+
PRIOFFM -
|
874
|
+
PRIOFIM -
|
875
|
+
REF - Reference
|
876
|
+
SSNV - Social Security Verification
|
877
|
+
WC - Worker's compensation
|
878
|
+
INTLBNK - International Bankruptcy Check
|
879
|
+
INTLDSP - International Directorship
|
880
|
+
INTLED - International Education
|
881
|
+
INTLFIN - International Credit Check
|
882
|
+
INTFMP - International Former Employment
|
883
|
+
INTLGID - International Government ID Search
|
884
|
+
INTLLIC - International License Verification
|
885
|
+
INTLLIL - International Litigation - Local
|
886
|
+
INTLLIN - International Litigation - National
|
887
|
+
INTLMMS - International Reputational Media Search
|
888
|
+
INTLMVR - International Driver's License Verification
|
889
|
+
INTLOTH - International Other
|
890
|
+
INTLPMP - International Present Employment
|
891
|
+
INTLPRL - International Criminal Search - Local
|
892
|
+
INTLPRN - International Criminal Search – National
|
893
|
+
INTLREF - International References
|
894
|
+
</xs:documentation>
|
895
|
+
</xs:annotation>
|
896
|
+
<xs:simpleType>
|
897
|
+
<xs:restriction base="xs:NMTOKEN">
|
898
|
+
<xs:enumeration value="ADI"/>
|
899
|
+
<xs:enumeration value="CVR"/>
|
900
|
+
<xs:enumeration value="CVR-INS"/>
|
901
|
+
<xs:enumeration value="DRG"/>
|
902
|
+
<xs:enumeration value="SCG"/>
|
903
|
+
<xs:enumeration value="ED"/>
|
904
|
+
<xs:enumeration value="FEMP"/>
|
905
|
+
<xs:enumeration value="FIN"/>
|
906
|
+
<xs:enumeration value="GSA"/>
|
907
|
+
<xs:enumeration value="MIL"/>
|
908
|
+
<xs:enumeration value="MVR"/>
|
909
|
+
<xs:enumeration value="NCRP"/>
|
910
|
+
<xs:enumeration value="EVTN"/>
|
911
|
+
<xs:enumeration value="OTHER"/>
|
912
|
+
<xs:enumeration value="PEMP"/>
|
913
|
+
<xs:enumeration value="PRI-ADD"/>
|
914
|
+
<xs:enumeration value="PRIOFAC"/>
|
915
|
+
<xs:enumeration value="PRICPGS"/>
|
916
|
+
<xs:enumeration value="PRINSOS"/>
|
917
|
+
<xs:enumeration value="PRI-OIG"/>
|
918
|
+
<xs:enumeration value="PRI-SEC"/>
|
919
|
+
<xs:enumeration value="PRI-FDA"/>
|
920
|
+
<xs:enumeration value="PRICDLS"/>
|
921
|
+
<xs:enumeration value="PRI-MMS"/>
|
922
|
+
<xs:enumeration value="PRI-GSA"/>
|
923
|
+
<xs:enumeration value="PRI-SEX"/>
|
924
|
+
<xs:enumeration value="PRIFAC1"/>
|
925
|
+
<xs:enumeration value="PRIFAC2"/>
|
926
|
+
<xs:enumeration value="PRIFAC3"/>
|
927
|
+
<xs:enumeration value="PRIFC1O"/>
|
928
|
+
<xs:enumeration value="PRIFC2O"/>
|
929
|
+
<xs:enumeration value="PRIFC3O"/>
|
930
|
+
<xs:enumeration value="PRIOIAL"/>
|
931
|
+
<xs:enumeration value="PRIOICA"/>
|
932
|
+
<xs:enumeration value="PRIOIGA"/>
|
933
|
+
<xs:enumeration value="PRIOIID"/>
|
934
|
+
<xs:enumeration value="PRIOIIL"/>
|
935
|
+
<xs:enumeration value="PRIOIKS"/>
|
936
|
+
<xs:enumeration value="PRIOINJ"/>
|
937
|
+
<xs:enumeration value="PRIOINY"/>
|
938
|
+
<xs:enumeration value="PRIOIPA"/>
|
939
|
+
<xs:enumeration value="PRIOITX"/>
|
940
|
+
<xs:enumeration value="PRI-CR"/>
|
941
|
+
<xs:enumeration value="PRI-EXP"/>
|
942
|
+
<xs:enumeration value="PRI-FAM"/>
|
943
|
+
<xs:enumeration value="PRI-FFM"/>
|
944
|
+
<xs:enumeration value="PRI-FIM"/>
|
945
|
+
<xs:enumeration value="PRI-FM"/>
|
946
|
+
<xs:enumeration value="PRI-FRI"/>
|
947
|
+
<xs:enumeration value="PRI-MRI"/>
|
948
|
+
<xs:enumeration value="PRICPCR"/>
|
949
|
+
<xs:enumeration value="PRINCRF"/>
|
950
|
+
<xs:enumeration value="PRINCRP"/>
|
951
|
+
<xs:enumeration value="PRIOFFM"/>
|
952
|
+
<xs:enumeration value="PRIOFIM"/>
|
953
|
+
<xs:enumeration value="REF"/>
|
954
|
+
<xs:enumeration value="SSNV"/>
|
955
|
+
<xs:enumeration value="WC"/>
|
956
|
+
<xs:enumeration value="INTLBNK"/>
|
957
|
+
<xs:enumeration value="INTLDSP"/>
|
958
|
+
<xs:enumeration value="INTLED"/>
|
959
|
+
<xs:enumeration value="INTLFIN"/>
|
960
|
+
<xs:enumeration value="INTLFMP"/>
|
961
|
+
<xs:enumeration value="INTLGID"/>
|
962
|
+
<xs:enumeration value="INTLLIC"/>
|
963
|
+
<xs:enumeration value="INTLLIL"/>
|
964
|
+
<xs:enumeration value="INTLLIN"/>
|
965
|
+
<xs:enumeration value="INTLMMS"/>
|
966
|
+
<xs:enumeration value="INTLMVR"/>
|
967
|
+
<xs:enumeration value="INTLOTH"/>
|
968
|
+
<xs:enumeration value="INTLPMP"/>
|
969
|
+
<xs:enumeration value="INTLPRL"/>
|
970
|
+
<xs:enumeration value="INTLPRN"/>
|
971
|
+
<xs:enumeration value="INTLREF"/>
|
972
|
+
</xs:restriction>
|
973
|
+
</xs:simpleType>
|
974
|
+
</xs:attribute>
|
975
|
+
<xs:attribute name="subtype">
|
976
|
+
<xs:annotation>
|
977
|
+
<xs:documentation>Identifies the subtype of the screening:
|
978
|
+
Type: CVR - Credential Verification
|
979
|
+
Subtype: CER - Certification
|
980
|
+
FAA - Federal Aviation Administration Record Check
|
981
|
+
IND - Industry Accreditation
|
982
|
+
LIC - License Verification
|
983
|
+
|
984
|
+
Type: MIL - Military Records
|
985
|
+
Subtype: MILD - Discharge Papers
|
986
|
+
MILF - Full Record
|
987
|
+
|
988
|
+
Type: OTHER - Other Component
|
989
|
+
Subtype: ASET - Asset Search
|
990
|
+
BANK - Bankruptcy Records
|
991
|
+
BFIN - Business Financial Report
|
992
|
+
DOCA - DOC Denied Persons List
|
993
|
+
DOCB - DOC Entity List Social
|
994
|
+
DOS - DOS Proliferation Debarment List
|
995
|
+
DTEC - DTEC
|
996
|
+
EAR - Export Administration Regulations
|
997
|
+
ESTM - Esteem Database Search
|
998
|
+
ESTM - Esteem Database Search
|
999
|
+
FDA - FDA Sanctions List
|
1000
|
+
FIN - Financial Report
|
1001
|
+
GSA - General Services Administration
|
1002
|
+
HHS - Health and Human Services
|
1003
|
+
HIP - Health Integrity Protection
|
1004
|
+
IDRT - ID Report
|
1005
|
+
LITI - Litigation
|
1006
|
+
MIDX - Mortgage Industry Data Exchange
|
1007
|
+
MMS - Media Search
|
1008
|
+
OFAC - Office of Foreign Assets Control
|
1009
|
+
OIG - Occupational Industry Government
|
1010
|
+
OTH - Other
|
1011
|
+
PHOT - Photograph Identification
|
1012
|
+
PRI - Public Records Information
|
1013
|
+
SEC - Securities and Exchange Commission
|
1014
|
+
SEX - Sexual Offender Search
|
1015
|
+
TAX - Tax Liens
|
1016
|
+
WARR - Wants and Warrants Search
|
1017
|
+
|
1018
|
+
Type: PRI-ADD - PRI Additional Record Type
|
1019
|
+
Subtype: ARTI - Articles of Incorporation
|
1020
|
+
BANK - Bankruptcy Records
|
1021
|
+
BKFA - Bankruptcy Record Federal Archive
|
1022
|
+
CUC5 - County/Town UCC Search 5 Years
|
1023
|
+
CUF5 - County/Town UCC Search 5 Years and Filing
|
1024
|
+
DVRC - Divorce
|
1025
|
+
FCLR - Federal Civil Litigation Records
|
1026
|
+
FFFA - Federal Felony and Misdemeanor Federal Archive
|
1027
|
+
FIXF - Fixture Filing
|
1028
|
+
FIXS - Fixture Filing Search
|
1029
|
+
FLFA - Federal Civil Litigation Records Federal Archive
|
1030
|
+
JUD2 - Judgment Search 2 Years
|
1031
|
+
JUDG - Judgment Search
|
1032
|
+
LITI - Not Valid For Re - Litigation Records
|
1033
|
+
MUNI - Not Valid For Re - Municipal Record
|
1034
|
+
POL - Police Records
|
1035
|
+
SCL2 - State Civil Litigation Record Search 2 Years
|
1036
|
+
SCLL - State Civil Litigation Lower Court Search
|
1037
|
+
SCLR - State Civil Litigation Records
|
1038
|
+
SCLU - State Civil Litigation Upper Court Search
|
1039
|
+
SOST - Secretary Of State Tax Lien Search
|
1040
|
+
SOT2 - Secretary Of State Tax Lien Search 2 Years
|
1041
|
+
SUC5 - Secretary Of State UCC Search 5 Years
|
1042
|
+
SUF5 - Secretary Of State UCC Search 5 Years And Filing
|
1043
|
+
TAXF - Tax Liens / Federal
|
1044
|
+
TAXS - Tax Liens / State
|
1045
|
+
TRFC - Traffic Record Search
|
1046
|
+
TXF2 - Tax Liens - Federal 2 Years
|
1047
|
+
TXS2 - Tax Liens - State 2 Years
|
1048
|
+
UCC5 - Not Valid For Re - UCC Search 5 Years
|
1049
|
+
UCF5 - Not Valid For Re - UCC Search 5 Years And Filing
|
1050
|
+
WARR - Wants And Warrants Search
|
1051
|
+
WCOM - Workers Compensation
|
1052
|
+
WCT - Tallahassee Workers' Compensation
|
1053
|
+
|
1054
|
+
Type: WC - Workers Compensation
|
1055
|
+
Subtype: WCOM - Workers Compensation
|
1056
|
+
WCT - Tallahassee Workers Compensation
|
1057
|
+
|
1058
|
+
Type: INTL* - International Elements
|
1059
|
+
Subtype: AD - ANDORRA
|
1060
|
+
AE - UNITED ARAB EMIRATES
|
1061
|
+
AF - AFGHANISTAN
|
1062
|
+
AG - ANTIGUA AND BARBUDA
|
1063
|
+
AI - ANGUILLA
|
1064
|
+
AL - ALBANIA
|
1065
|
+
AM - ARMENIA
|
1066
|
+
AN - NETHERLANDS ANTILLES
|
1067
|
+
AO - ANGOLA
|
1068
|
+
AQ - ANTARCTICA
|
1069
|
+
AT - AUSTRIA
|
1070
|
+
AU - AUSTRALIA
|
1071
|
+
AW - ARUBA
|
1072
|
+
AZ - AZERBAIJAN
|
1073
|
+
BA - BOSNIA AND HERZEGOVINA
|
1074
|
+
BB - BARBADOS
|
1075
|
+
BD - BANGLADESH
|
1076
|
+
BE - BELGIUM
|
1077
|
+
BF - BURKINA FASO
|
1078
|
+
BG - BULGARIA
|
1079
|
+
BH - BAHRAIN
|
1080
|
+
BI - BURUNDI
|
1081
|
+
BJ - BENIN
|
1082
|
+
BM - BERMUDA
|
1083
|
+
BN - BRUNEI DARUSSALAM
|
1084
|
+
BO - BOLIVIA
|
1085
|
+
BR - BRAZIL
|
1086
|
+
BS - BAHAMAS
|
1087
|
+
BT - BHUTAN
|
1088
|
+
BV - BOUVET ISLAND
|
1089
|
+
BW - BOTSWANA
|
1090
|
+
BY - BELARUS
|
1091
|
+
BZ - BELIZE
|
1092
|
+
CA - CANADA
|
1093
|
+
CC - COCOS (KEELING) ISLANDS
|
1094
|
+
CD - CONGO, THE DEMOCRATIC REPUBLIC OF THE
|
1095
|
+
CF - CENTRAL AFRICAN REPUBLIC
|
1096
|
+
CG - CONGO
|
1097
|
+
CH - SWITZERLAND
|
1098
|
+
CI - CÔTE D'IVOIRE
|
1099
|
+
CK - COOK ISLANDS
|
1100
|
+
CL - CHILE
|
1101
|
+
CM - CAMEROON
|
1102
|
+
CN - CHINA
|
1103
|
+
CO - COLOMBIA
|
1104
|
+
CR - COSTA RICA
|
1105
|
+
CU - CUBA
|
1106
|
+
CV - CAPE VERDE
|
1107
|
+
CX - CHRISTMAS ISLAND
|
1108
|
+
MZ - MOZAMBIQUE
|
1109
|
+
GS - SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS
|
1110
|
+
GT - GUATEMALA
|
1111
|
+
GU - GUAM
|
1112
|
+
GW - GUINEA-BISSAU
|
1113
|
+
GY - GUYANA
|
1114
|
+
HK - HONG KONG
|
1115
|
+
HM - HEARD ISLAND AND MCDONALD ISLANDS
|
1116
|
+
HN - HONDURAS
|
1117
|
+
HR - CROATIA
|
1118
|
+
HT - HAITI
|
1119
|
+
HU - HUNGARY
|
1120
|
+
ID - INDONESIA
|
1121
|
+
IE - IRELAND
|
1122
|
+
IL - ISRAEL
|
1123
|
+
IN - INDIA
|
1124
|
+
IO - BRITISH INDIAN OCEAN TERRITORY
|
1125
|
+
IQ - IRAQ
|
1126
|
+
IR - IRAN, ISLAMIC REPUBLIC OF
|
1127
|
+
IS - ICELAND
|
1128
|
+
IT - ITALY
|
1129
|
+
JM - JAMAICA
|
1130
|
+
JO - JORDAN
|
1131
|
+
JP - JAPAN
|
1132
|
+
KE - KENYA
|
1133
|
+
KG - KYRGYZSTAN
|
1134
|
+
KH - CAMBODIA
|
1135
|
+
KI - KIRIBATI
|
1136
|
+
KM - COMOROS
|
1137
|
+
KN - SAINT KITTS AND NEVIS
|
1138
|
+
KP - KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF
|
1139
|
+
KR - KOREA, REPUBLIC OF
|
1140
|
+
KW - KUWAIT
|
1141
|
+
KY - CAYMAN ISLANDS
|
1142
|
+
KZ - KAZAKHSTAN
|
1143
|
+
LA - LAO PEOPLE’S DEMOCRATIC REPUBLIC
|
1144
|
+
LB - LEBANON
|
1145
|
+
LC - SAINT LUCIA
|
1146
|
+
LI - LIECHTENSTEIN
|
1147
|
+
LK - SRI LANKA
|
1148
|
+
LR - LIBERIA
|
1149
|
+
LS - LESOTHO
|
1150
|
+
LT - LITHUANIA
|
1151
|
+
LU - LUXEMBOURG
|
1152
|
+
LV - LATVIA
|
1153
|
+
LY - LIBYAN ARAB JAMAHIRIYA
|
1154
|
+
MA - MOROCCO
|
1155
|
+
MC - MONACO
|
1156
|
+
MD - MOLDOVA, REPUBLIC OF
|
1157
|
+
MG - MADAGASCAR
|
1158
|
+
NA - NAMIBIA
|
1159
|
+
NC - NEW CALEDONIA
|
1160
|
+
NE - NIGER
|
1161
|
+
NF - NORFOLK ISLAND
|
1162
|
+
NG - NIGERIA
|
1163
|
+
NI - NICARAGUA
|
1164
|
+
NL - NETHERLANDS
|
1165
|
+
NO - NORWAY
|
1166
|
+
NP - NEPAL
|
1167
|
+
NR - NAURU
|
1168
|
+
NU - NIUE
|
1169
|
+
NZ - NEW ZEALAND
|
1170
|
+
OM - OMAN
|
1171
|
+
PA - PANAMA
|
1172
|
+
PE - PERU
|
1173
|
+
PF - FRENCH POLYNESIA
|
1174
|
+
PG - PAPUA NEW GUINEA
|
1175
|
+
PH - PHILIPPINES
|
1176
|
+
PK - PAKISTAN
|
1177
|
+
PL - POLAND
|
1178
|
+
PM - SAINT PIERRE AND MIQUELON
|
1179
|
+
PN - PITCAIRN
|
1180
|
+
PR - PUERTO RICO
|
1181
|
+
PS - PALESTINIAN TERRITORY, OCCUPIED
|
1182
|
+
PT - PORTUGAL
|
1183
|
+
PW - PALAU
|
1184
|
+
PY - PARAGUAY
|
1185
|
+
QA - QATAR
|
1186
|
+
RE - RÉUNION
|
1187
|
+
RO - ROMANIA
|
1188
|
+
RU - RUSSIAN FEDERATION
|
1189
|
+
RW - RWANDA
|
1190
|
+
SA - SAUDI ARABIA
|
1191
|
+
SB - SOLOMON ISLANDS
|
1192
|
+
SC - SEYCHELLES
|
1193
|
+
SD - SUDAN
|
1194
|
+
SE - SWEDEN
|
1195
|
+
SG - SINGAPORE
|
1196
|
+
SH - SAINT HELENA
|
1197
|
+
SI - SLOVENIA
|
1198
|
+
SJ - SVALBARD AND JAN MAYEN
|
1199
|
+
SK - SLOVAKIA
|
1200
|
+
SL - SIERRA LEONE
|
1201
|
+
SM - SAN MARINO
|
1202
|
+
SN - SENEGAL
|
1203
|
+
SO - SOMALIA
|
1204
|
+
SR - SURINAME
|
1205
|
+
ST - SAO TOME AND PRINCIPE
|
1206
|
+
SV - EL SALVADOR
|
1207
|
+
SY - SYRIAN ARAB REPUBLIC
|
1208
|
+
SZ - SWAZILAND
|
1209
|
+
TC - TURKS AND CAICOS ISLANDS
|
1210
|
+
TD - CHAD
|
1211
|
+
TF - FRENCH SOUTHERN TERRITORIES
|
1212
|
+
TG - TOGO
|
1213
|
+
TH - THAILAND
|
1214
|
+
TJ - TAJIKISTAN
|
1215
|
+
TK - TOKELAU
|
1216
|
+
TL - TIMOR-LESTE
|
1217
|
+
TM - TURKMENISTAN
|
1218
|
+
TN - TUNISIA
|
1219
|
+
TO - TONGA
|
1220
|
+
TR - TURKEY
|
1221
|
+
TT - TRINIDAD AND TOBAGO
|
1222
|
+
TV - TUVALU
|
1223
|
+
TW - TAIWAN, PROVINCE OF CHINA
|
1224
|
+
TZ - TANZANIA, UNITED REPUBLIC OF
|
1225
|
+
CY - CYPRUS
|
1226
|
+
CZ - CZECH REPUBLIC
|
1227
|
+
DE - GERMANY
|
1228
|
+
DJ - DJIBOUTI
|
1229
|
+
DK - DENMARK
|
1230
|
+
DM - DOMINICA
|
1231
|
+
DO - DOMINICAN REPUBLIC
|
1232
|
+
DZ - ALGERIA
|
1233
|
+
EC - ECUADOR
|
1234
|
+
EE - ESTONIA
|
1235
|
+
EG - EGYPT
|
1236
|
+
EH - WESTERN SAHARA
|
1237
|
+
ER - ERITREA
|
1238
|
+
ES - SPAIN
|
1239
|
+
ET - ETHIOPIA
|
1240
|
+
FI - FINLAND
|
1241
|
+
FJ - FIJI
|
1242
|
+
FK - FALKLAND ISLANDS (MALVINAS)
|
1243
|
+
FM - MICRONESIA, FEDERATED STATES OF
|
1244
|
+
FO - FAROE ISLANDS
|
1245
|
+
FR - FRANCE
|
1246
|
+
GA - GABON
|
1247
|
+
GB - UNITED KINGDOM
|
1248
|
+
GD - GRENADA
|
1249
|
+
GE - GEORGIA
|
1250
|
+
GF - FRENCH GUIANA
|
1251
|
+
GH - GHANA
|
1252
|
+
GI - GIBRALTAR
|
1253
|
+
GL - GREENLAND
|
1254
|
+
GM - GAMBIA
|
1255
|
+
GN - GUINEA
|
1256
|
+
GP - GUADELOUPE
|
1257
|
+
GQ - EQUATORIAL GUINEA
|
1258
|
+
GR - GREECE
|
1259
|
+
MH - MARSHALL ISLANDS
|
1260
|
+
MK - MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF
|
1261
|
+
ML - MALI
|
1262
|
+
MM - MYANMAR
|
1263
|
+
MN - MONGOLIA
|
1264
|
+
MO - MACAO
|
1265
|
+
MP - NORTHERN MARIANA ISLANDS
|
1266
|
+
MQ - MARTINIQUE
|
1267
|
+
MR - MAURITANIA
|
1268
|
+
MS - MONTSERRAT
|
1269
|
+
MT - MALTA
|
1270
|
+
MU - MAURITIUS
|
1271
|
+
MV - MALDIVES
|
1272
|
+
MW - MALAWI
|
1273
|
+
MX - MEXICO
|
1274
|
+
MY - MALAYSIA
|
1275
|
+
UA - UKRAINE
|
1276
|
+
UG - UGANDA
|
1277
|
+
UM - UNITED STATES MINOR OUTLYING ISLANDS
|
1278
|
+
UY - URUGUAY
|
1279
|
+
UZ - UZBEKISTAN
|
1280
|
+
VA - HOLY SEE (VATICAN CITY STATE)
|
1281
|
+
VC - SAINT VINCENT AND THE GRENADINES
|
1282
|
+
VE - VENEZUELA
|
1283
|
+
VG - VIRGIN ISLANDS, BRITISH
|
1284
|
+
VI - VIRGIN ISLANDS, U.S.
|
1285
|
+
VN - VIET NAM
|
1286
|
+
VU - VANUATU
|
1287
|
+
WF - WALLIS AND FUTUNA
|
1288
|
+
WS - SAMOA
|
1289
|
+
YE - YEMEN
|
1290
|
+
YT - MAYOTTE
|
1291
|
+
RS - SERBIA
|
1292
|
+
ZA - SOUTH AFRICA
|
1293
|
+
ZM - ZAMBIA
|
1294
|
+
ZW - ZIMBABWE
|
1295
|
+
AS - AMERICAN SAMOA
|
1296
|
+
AR - ARGENTINA
|
1297
|
+
GG - GUERNSEY
|
1298
|
+
IM - ISLE OF MAN
|
1299
|
+
JE - JERSEY
|
1300
|
+
ME - MONTENEGRO
|
1301
|
+
BL - SAINT BARTHÉLEMY
|
1302
|
+
MF - SAINT MARTIN (FRENCH PART)
|
1303
|
+
</xs:documentation>
|
1304
|
+
</xs:annotation>
|
1305
|
+
<xs:simpleType>
|
1306
|
+
<xs:restriction base="xs:NMTOKEN">
|
1307
|
+
<xs:enumeration value="ADI"/>
|
1308
|
+
<xs:enumeration value="ALOC"/>
|
1309
|
+
<xs:enumeration value="ARSP"/>
|
1310
|
+
<xs:enumeration value="ARTI"/>
|
1311
|
+
<xs:enumeration value="ASET"/>
|
1312
|
+
<xs:enumeration value="AZPS"/>
|
1313
|
+
<xs:enumeration value="BANK"/>
|
1314
|
+
<xs:enumeration value="BFIN"/>
|
1315
|
+
<xs:enumeration value="BKFA"/>
|
1316
|
+
<xs:enumeration value="CA5"/>
|
1317
|
+
<xs:enumeration value="CADJ"/>
|
1318
|
+
<xs:enumeration value="CBOI"/>
|
1319
|
+
<xs:enumeration value="CDLS"/>
|
1320
|
+
<xs:enumeration value="CER"/>
|
1321
|
+
<xs:enumeration value="CPDS"/>
|
1322
|
+
<xs:enumeration value="CPGW"/>
|
1323
|
+
<xs:enumeration value="CTSP"/>
|
1324
|
+
<xs:enumeration value="CUC5"/>
|
1325
|
+
<xs:enumeration value="CUF5"/>
|
1326
|
+
<xs:enumeration value="DCMP"/>
|
1327
|
+
<xs:enumeration value="DESP"/>
|
1328
|
+
<xs:enumeration value="DTEC"/>
|
1329
|
+
<xs:enumeration value="DTH"/>
|
1330
|
+
<xs:enumeration value="DVRC"/>
|
1331
|
+
<xs:enumeration value="EAR"/>
|
1332
|
+
<xs:enumeration value="ESTM"/>
|
1333
|
+
<xs:enumeration value="EXAU"/>
|
1334
|
+
<xs:enumeration value="EXP"/>
|
1335
|
+
<xs:enumeration value="FandM"/>
|
1336
|
+
<xs:enumeration value="FAA"/>
|
1337
|
+
<xs:enumeration value="FAM"/>
|
1338
|
+
<xs:enumeration value="FC1O"/>
|
1339
|
+
<xs:enumeration value="FC2O"/>
|
1340
|
+
<xs:enumeration value="FC3O"/>
|
1341
|
+
<xs:enumeration value="FCLR"/>
|
1342
|
+
<xs:enumeration value="FDA"/>
|
1343
|
+
<xs:enumeration value="FDLE"/>
|
1344
|
+
<xs:enumeration value="FFandM"/>
|
1345
|
+
<xs:enumeration value="FFFA"/>
|
1346
|
+
<xs:enumeration value="FIM"/>
|
1347
|
+
<xs:enumeration value="FIXF"/>
|
1348
|
+
<xs:enumeration value="FIXS"/>
|
1349
|
+
<xs:enumeration value="FLFA"/>
|
1350
|
+
<xs:enumeration value="FRI"/>
|
1351
|
+
<xs:enumeration value="GCIC"/>
|
1352
|
+
<xs:enumeration value="GCIF"/>
|
1353
|
+
<xs:enumeration value="GSA"/>
|
1354
|
+
<xs:enumeration value="HHS"/>
|
1355
|
+
<xs:enumeration value="HICJ"/>
|
1356
|
+
<xs:enumeration value="HIP"/>
|
1357
|
+
<xs:enumeration value="IACI"/>
|
1358
|
+
<xs:enumeration value="IDLE"/>
|
1359
|
+
<xs:enumeration value="ILSP"/>
|
1360
|
+
<xs:enumeration value="IND"/>
|
1361
|
+
<xs:enumeration value="INSP"/>
|
1362
|
+
<xs:enumeration value="JUD2"/>
|
1363
|
+
<xs:enumeration value="JUDG"/>
|
1364
|
+
<xs:enumeration value="KSBI"/>
|
1365
|
+
<xs:enumeration value="KYOC"/>
|
1366
|
+
<xs:enumeration value="KYSP"/>
|
1367
|
+
<xs:enumeration value="LAC"/>
|
1368
|
+
<xs:enumeration value="LAPS"/>
|
1369
|
+
<xs:enumeration value="LIC"/>
|
1370
|
+
<xs:enumeration value="LITI"/>
|
1371
|
+
<xs:enumeration value="MACH"/>
|
1372
|
+
<xs:enumeration value="MDOC"/>
|
1373
|
+
<xs:enumeration value="MEPS"/>
|
1374
|
+
<xs:enumeration value="MIDX"/>
|
1375
|
+
<xs:enumeration value="MILD"/>
|
1376
|
+
<xs:enumeration value="MILF"/>
|
1377
|
+
<xs:enumeration value="MISD"/>
|
1378
|
+
<xs:enumeration value="MISP"/>
|
1379
|
+
<xs:enumeration value="MMS"/>
|
1380
|
+
<xs:enumeration value="MNCA"/>
|
1381
|
+
<xs:enumeration value="MOHP"/>
|
1382
|
+
<xs:enumeration value="MTDJ"/>
|
1383
|
+
<xs:enumeration value="MUNI"/>
|
1384
|
+
<xs:enumeration value="NCOC"/>
|
1385
|
+
<xs:enumeration value="NCRF"/>
|
1386
|
+
<xs:enumeration value="NCRP"/>
|
1387
|
+
<xs:enumeration value="NDBI"/>
|
1388
|
+
<xs:enumeration value="NESP"/>
|
1389
|
+
<xs:enumeration value="NHPS"/>
|
1390
|
+
<xs:enumeration value="NJSP"/>
|
1391
|
+
<xs:enumeration value="NMPS"/>
|
1392
|
+
<xs:enumeration value="NSOS"/>
|
1393
|
+
<xs:enumeration value="NY13"/>
|
1394
|
+
<xs:enumeration value="NY4B"/>
|
1395
|
+
<xs:enumeration value="NY5B"/>
|
1396
|
+
<xs:enumeration value="NYOC"/>
|
1397
|
+
<xs:enumeration value="OFAC"/>
|
1398
|
+
<xs:enumeration value="OFFM"/>
|
1399
|
+
<xs:enumeration value="OFIM"/>
|
1400
|
+
<xs:enumeration value="OHBI"/>
|
1401
|
+
<xs:enumeration value="OIG"/>
|
1402
|
+
<xs:enumeration value="OIAL"/>
|
1403
|
+
<xs:enumeration value="OICA"/>
|
1404
|
+
<xs:enumeration value="OIGA"/>
|
1405
|
+
<xs:enumeration value="OIID"/>
|
1406
|
+
<xs:enumeration value="OIIL"/>
|
1407
|
+
<xs:enumeration value="OIKS"/>
|
1408
|
+
<xs:enumeration value="OINJ"/>
|
1409
|
+
<xs:enumeration value="OINY"/>
|
1410
|
+
<xs:enumeration value="OIPA"/>
|
1411
|
+
<xs:enumeration value="OITX"/>
|
1412
|
+
<xs:enumeration value="OKBI"/>
|
1413
|
+
<xs:enumeration value="OPEN"/>
|
1414
|
+
<xs:enumeration value="ORSP"/>
|
1415
|
+
<xs:enumeration value="OTH"/>
|
1416
|
+
<xs:enumeration value="PARI"/>
|
1417
|
+
<xs:enumeration value="POL"/>
|
1418
|
+
<xs:enumeration value="PRI"/>
|
1419
|
+
<xs:enumeration value="RIBI"/>
|
1420
|
+
<xs:enumeration value="SCL2"/>
|
1421
|
+
<xs:enumeration value="SCLL"/>
|
1422
|
+
<xs:enumeration value="SCLR"/>
|
1423
|
+
<xs:enumeration value="SCLU"/>
|
1424
|
+
<xs:enumeration value="SDCI"/>
|
1425
|
+
<xs:enumeration value="SEC"/>
|
1426
|
+
<xs:enumeration value="SEX"/>
|
1427
|
+
<xs:enumeration value="SLED"/>
|
1428
|
+
<xs:enumeration value="SOST"/>
|
1429
|
+
<xs:enumeration value="SOT2"/>
|
1430
|
+
<xs:enumeration value="SSNV"/>
|
1431
|
+
<xs:enumeration value="SUC5"/>
|
1432
|
+
<xs:enumeration value="SUF5"/>
|
1433
|
+
<xs:enumeration value="TAX"/>
|
1434
|
+
<xs:enumeration value="TAXF"/>
|
1435
|
+
<xs:enumeration value="TAXS"/>
|
1436
|
+
<xs:enumeration value="TNBI"/>
|
1437
|
+
<xs:enumeration value="TRFC"/>
|
1438
|
+
<xs:enumeration value="TXF2"/>
|
1439
|
+
<xs:enumeration value="TXPS"/>
|
1440
|
+
<xs:enumeration value="TXS2"/>
|
1441
|
+
<xs:enumeration value="UCC5"/>
|
1442
|
+
<xs:enumeration value="UCF5"/>
|
1443
|
+
<xs:enumeration value="VASP"/>
|
1444
|
+
<xs:enumeration value="VTCI"/>
|
1445
|
+
<xs:enumeration value="WARR"/>
|
1446
|
+
<xs:enumeration value="WASP"/>
|
1447
|
+
<xs:enumeration value="WCOM"/>
|
1448
|
+
<xs:enumeration value="WCT"/>
|
1449
|
+
<xs:enumeration value="WICI"/>
|
1450
|
+
<xs:enumeration value="WSCR"/>
|
1451
|
+
<xs:enumeration value="WVSP"/>
|
1452
|
+
<xs:enumeration value="WYCI"/>
|
1453
|
+
<xs:enumeration value="AD"/>
|
1454
|
+
<xs:enumeration value="AE"/>
|
1455
|
+
<xs:enumeration value="AF"/>
|
1456
|
+
<xs:enumeration value="AG"/>
|
1457
|
+
<xs:enumeration value="AI"/>
|
1458
|
+
<xs:enumeration value="AL"/>
|
1459
|
+
<xs:enumeration value="AM"/>
|
1460
|
+
<xs:enumeration value="AN"/>
|
1461
|
+
<xs:enumeration value="AO"/>
|
1462
|
+
<xs:enumeration value="AQ"/>
|
1463
|
+
<xs:enumeration value="AR"/>
|
1464
|
+
<xs:enumeration value="AS"/>
|
1465
|
+
<xs:enumeration value="AT"/>
|
1466
|
+
<xs:enumeration value="AU"/>
|
1467
|
+
<xs:enumeration value="AW"/>
|
1468
|
+
<xs:enumeration value="AZ"/>
|
1469
|
+
<xs:enumeration value="BA"/>
|
1470
|
+
<xs:enumeration value="BB"/>
|
1471
|
+
<xs:enumeration value="BD"/>
|
1472
|
+
<xs:enumeration value="BE"/>
|
1473
|
+
<xs:enumeration value="BF"/>
|
1474
|
+
<xs:enumeration value="BG"/>
|
1475
|
+
<xs:enumeration value="BH"/>
|
1476
|
+
<xs:enumeration value="BI"/>
|
1477
|
+
<xs:enumeration value="BJ"/>
|
1478
|
+
<xs:enumeration value="BL"/>
|
1479
|
+
<xs:enumeration value="BM"/>
|
1480
|
+
<xs:enumeration value="BN"/>
|
1481
|
+
<xs:enumeration value="BO"/>
|
1482
|
+
<xs:enumeration value="BR"/>
|
1483
|
+
<xs:enumeration value="BS"/>
|
1484
|
+
<xs:enumeration value="BT"/>
|
1485
|
+
<xs:enumeration value="BV"/>
|
1486
|
+
<xs:enumeration value="BW"/>
|
1487
|
+
<xs:enumeration value="BY"/>
|
1488
|
+
<xs:enumeration value="BZ"/>
|
1489
|
+
<xs:enumeration value="CA"/>
|
1490
|
+
<xs:enumeration value="CC"/>
|
1491
|
+
<xs:enumeration value="CD"/>
|
1492
|
+
<xs:enumeration value="CF"/>
|
1493
|
+
<xs:enumeration value="CG"/>
|
1494
|
+
<xs:enumeration value="CH"/>
|
1495
|
+
<xs:enumeration value="CI"/>
|
1496
|
+
<xs:enumeration value="CK"/>
|
1497
|
+
<xs:enumeration value="CL"/>
|
1498
|
+
<xs:enumeration value="CM"/>
|
1499
|
+
<xs:enumeration value="CN"/>
|
1500
|
+
<xs:enumeration value="CO"/>
|
1501
|
+
<xs:enumeration value="CR"/>
|
1502
|
+
<xs:enumeration value="CU"/>
|
1503
|
+
<xs:enumeration value="CV"/>
|
1504
|
+
<xs:enumeration value="CX"/>
|
1505
|
+
<xs:enumeration value="CY"/>
|
1506
|
+
<xs:enumeration value="CZ"/>
|
1507
|
+
<xs:enumeration value="DE"/>
|
1508
|
+
<xs:enumeration value="DJ"/>
|
1509
|
+
<xs:enumeration value="DK"/>
|
1510
|
+
<xs:enumeration value="DM"/>
|
1511
|
+
<xs:enumeration value="DO"/>
|
1512
|
+
<xs:enumeration value="DZ"/>
|
1513
|
+
<xs:enumeration value="EC"/>
|
1514
|
+
<xs:enumeration value="EE"/>
|
1515
|
+
<xs:enumeration value="EG"/>
|
1516
|
+
<xs:enumeration value="EH"/>
|
1517
|
+
<xs:enumeration value="ER"/>
|
1518
|
+
<xs:enumeration value="ES"/>
|
1519
|
+
<xs:enumeration value="ET"/>
|
1520
|
+
<xs:enumeration value="FI"/>
|
1521
|
+
<xs:enumeration value="FJ"/>
|
1522
|
+
<xs:enumeration value="FK"/>
|
1523
|
+
<xs:enumeration value="FM"/>
|
1524
|
+
<xs:enumeration value="FO"/>
|
1525
|
+
<xs:enumeration value="FR"/>
|
1526
|
+
<xs:enumeration value="GA"/>
|
1527
|
+
<xs:enumeration value="GB"/>
|
1528
|
+
<xs:enumeration value="GD"/>
|
1529
|
+
<xs:enumeration value="GE"/>
|
1530
|
+
<xs:enumeration value="GF"/>
|
1531
|
+
<xs:enumeration value="GG"/>
|
1532
|
+
<xs:enumeration value="GH"/>
|
1533
|
+
<xs:enumeration value="GI"/>
|
1534
|
+
<xs:enumeration value="GL"/>
|
1535
|
+
<xs:enumeration value="GM"/>
|
1536
|
+
<xs:enumeration value="GN"/>
|
1537
|
+
<xs:enumeration value="GP"/>
|
1538
|
+
<xs:enumeration value="GQ"/>
|
1539
|
+
<xs:enumeration value="GR"/>
|
1540
|
+
<xs:enumeration value="GS"/>
|
1541
|
+
<xs:enumeration value="GT"/>
|
1542
|
+
<xs:enumeration value="GU"/>
|
1543
|
+
<xs:enumeration value="GW"/>
|
1544
|
+
<xs:enumeration value="GY"/>
|
1545
|
+
<xs:enumeration value="HK"/>
|
1546
|
+
<xs:enumeration value="HM"/>
|
1547
|
+
<xs:enumeration value="HN"/>
|
1548
|
+
<xs:enumeration value="HR"/>
|
1549
|
+
<xs:enumeration value="HT"/>
|
1550
|
+
<xs:enumeration value="HU"/>
|
1551
|
+
<xs:enumeration value="ID"/>
|
1552
|
+
<xs:enumeration value="IE"/>
|
1553
|
+
<xs:enumeration value="IL"/>
|
1554
|
+
<xs:enumeration value="IM"/>
|
1555
|
+
<xs:enumeration value="IN"/>
|
1556
|
+
<xs:enumeration value="IO"/>
|
1557
|
+
<xs:enumeration value="IQ"/>
|
1558
|
+
<xs:enumeration value="IR"/>
|
1559
|
+
<xs:enumeration value="IS"/>
|
1560
|
+
<xs:enumeration value="IT"/>
|
1561
|
+
<xs:enumeration value="JE"/>
|
1562
|
+
<xs:enumeration value="JM"/>
|
1563
|
+
<xs:enumeration value="JO"/>
|
1564
|
+
<xs:enumeration value="JP"/>
|
1565
|
+
<xs:enumeration value="KE"/>
|
1566
|
+
<xs:enumeration value="KG"/>
|
1567
|
+
<xs:enumeration value="KH"/>
|
1568
|
+
<xs:enumeration value="KI"/>
|
1569
|
+
<xs:enumeration value="KM"/>
|
1570
|
+
<xs:enumeration value="KN"/>
|
1571
|
+
<xs:enumeration value="KP"/>
|
1572
|
+
<xs:enumeration value="KR"/>
|
1573
|
+
<xs:enumeration value="KW"/>
|
1574
|
+
<xs:enumeration value="KY"/>
|
1575
|
+
<xs:enumeration value="KZ"/>
|
1576
|
+
<xs:enumeration value="LA"/>
|
1577
|
+
<xs:enumeration value="LB"/>
|
1578
|
+
<xs:enumeration value="LC"/>
|
1579
|
+
<xs:enumeration value="LI"/>
|
1580
|
+
<xs:enumeration value="LK"/>
|
1581
|
+
<xs:enumeration value="LR"/>
|
1582
|
+
<xs:enumeration value="LS"/>
|
1583
|
+
<xs:enumeration value="LT"/>
|
1584
|
+
<xs:enumeration value="LU"/>
|
1585
|
+
<xs:enumeration value="LV"/>
|
1586
|
+
<xs:enumeration value="LY"/>
|
1587
|
+
<xs:enumeration value="MA"/>
|
1588
|
+
<xs:enumeration value="MC"/>
|
1589
|
+
<xs:enumeration value="MD"/>
|
1590
|
+
<xs:enumeration value="ME"/>
|
1591
|
+
<xs:enumeration value="MF"/>
|
1592
|
+
<xs:enumeration value="MG"/>
|
1593
|
+
<xs:enumeration value="MH"/>
|
1594
|
+
<xs:enumeration value="MK"/>
|
1595
|
+
<xs:enumeration value="ML"/>
|
1596
|
+
<xs:enumeration value="MM"/>
|
1597
|
+
<xs:enumeration value="MN"/>
|
1598
|
+
<xs:enumeration value="MO"/>
|
1599
|
+
<xs:enumeration value="MP"/>
|
1600
|
+
<xs:enumeration value="MQ"/>
|
1601
|
+
<xs:enumeration value="MR"/>
|
1602
|
+
<xs:enumeration value="MS"/>
|
1603
|
+
<xs:enumeration value="MT"/>
|
1604
|
+
<xs:enumeration value="MU"/>
|
1605
|
+
<xs:enumeration value="MV"/>
|
1606
|
+
<xs:enumeration value="MW"/>
|
1607
|
+
<xs:enumeration value="MX"/>
|
1608
|
+
<xs:enumeration value="MY"/>
|
1609
|
+
<xs:enumeration value="MZ"/>
|
1610
|
+
<xs:enumeration value="NA"/>
|
1611
|
+
<xs:enumeration value="NC"/>
|
1612
|
+
<xs:enumeration value="NE"/>
|
1613
|
+
<xs:enumeration value="NF"/>
|
1614
|
+
<xs:enumeration value="NG"/>
|
1615
|
+
<xs:enumeration value="NI"/>
|
1616
|
+
<xs:enumeration value="NL"/>
|
1617
|
+
<xs:enumeration value="NO"/>
|
1618
|
+
<xs:enumeration value="NP"/>
|
1619
|
+
<xs:enumeration value="NR"/>
|
1620
|
+
<xs:enumeration value="NU"/>
|
1621
|
+
<xs:enumeration value="NZ"/>
|
1622
|
+
<xs:enumeration value="OM"/>
|
1623
|
+
<xs:enumeration value="PA"/>
|
1624
|
+
<xs:enumeration value="PE"/>
|
1625
|
+
<xs:enumeration value="PF"/>
|
1626
|
+
<xs:enumeration value="PG"/>
|
1627
|
+
<xs:enumeration value="PH"/>
|
1628
|
+
<xs:enumeration value="PK"/>
|
1629
|
+
<xs:enumeration value="PL"/>
|
1630
|
+
<xs:enumeration value="PM"/>
|
1631
|
+
<xs:enumeration value="PN"/>
|
1632
|
+
<xs:enumeration value="PR"/>
|
1633
|
+
<xs:enumeration value="PS"/>
|
1634
|
+
<xs:enumeration value="PT"/>
|
1635
|
+
<xs:enumeration value="PW"/>
|
1636
|
+
<xs:enumeration value="PY"/>
|
1637
|
+
<xs:enumeration value="QA"/>
|
1638
|
+
<xs:enumeration value="RE"/>
|
1639
|
+
<xs:enumeration value="RO"/>
|
1640
|
+
<xs:enumeration value="RS"/>
|
1641
|
+
<xs:enumeration value="RU"/>
|
1642
|
+
<xs:enumeration value="RW"/>
|
1643
|
+
<xs:enumeration value="SA"/>
|
1644
|
+
<xs:enumeration value="SB"/>
|
1645
|
+
<xs:enumeration value="SC"/>
|
1646
|
+
<xs:enumeration value="SD"/>
|
1647
|
+
<xs:enumeration value="SE"/>
|
1648
|
+
<xs:enumeration value="SG"/>
|
1649
|
+
<xs:enumeration value="SH"/>
|
1650
|
+
<xs:enumeration value="SI"/>
|
1651
|
+
<xs:enumeration value="SJ"/>
|
1652
|
+
<xs:enumeration value="SK"/>
|
1653
|
+
<xs:enumeration value="SL"/>
|
1654
|
+
<xs:enumeration value="SM"/>
|
1655
|
+
<xs:enumeration value="SN"/>
|
1656
|
+
<xs:enumeration value="SO"/>
|
1657
|
+
<xs:enumeration value="SR"/>
|
1658
|
+
<xs:enumeration value="ST"/>
|
1659
|
+
<xs:enumeration value="SV"/>
|
1660
|
+
<xs:enumeration value="SY"/>
|
1661
|
+
<xs:enumeration value="SZ"/>
|
1662
|
+
<xs:enumeration value="TC"/>
|
1663
|
+
<xs:enumeration value="TD"/>
|
1664
|
+
<xs:enumeration value="TF"/>
|
1665
|
+
<xs:enumeration value="TG"/>
|
1666
|
+
<xs:enumeration value="TH"/>
|
1667
|
+
<xs:enumeration value="TJ"/>
|
1668
|
+
<xs:enumeration value="TK"/>
|
1669
|
+
<xs:enumeration value="TL"/>
|
1670
|
+
<xs:enumeration value="TM"/>
|
1671
|
+
<xs:enumeration value="TN"/>
|
1672
|
+
<xs:enumeration value="TO"/>
|
1673
|
+
<xs:enumeration value="TR"/>
|
1674
|
+
<xs:enumeration value="TT"/>
|
1675
|
+
<xs:enumeration value="TV"/>
|
1676
|
+
<xs:enumeration value="TW"/>
|
1677
|
+
<xs:enumeration value="TZ"/>
|
1678
|
+
<xs:enumeration value="UA"/>
|
1679
|
+
<xs:enumeration value="UG"/>
|
1680
|
+
<xs:enumeration value="UM"/>
|
1681
|
+
<xs:enumeration value="UY"/>
|
1682
|
+
<xs:enumeration value="UZ"/>
|
1683
|
+
<xs:enumeration value="VA"/>
|
1684
|
+
<xs:enumeration value="VC"/>
|
1685
|
+
<xs:enumeration value="VE"/>
|
1686
|
+
<xs:enumeration value="VG"/>
|
1687
|
+
<xs:enumeration value="VI"/>
|
1688
|
+
<xs:enumeration value="VN"/>
|
1689
|
+
<xs:enumeration value="VU"/>
|
1690
|
+
<xs:enumeration value="WF"/>
|
1691
|
+
<xs:enumeration value="WS"/>
|
1692
|
+
<xs:enumeration value="YE"/>
|
1693
|
+
<xs:enumeration value="YT"/>
|
1694
|
+
<xs:enumeration value="ZA"/>
|
1695
|
+
<xs:enumeration value="ZM"/>
|
1696
|
+
<xs:enumeration value="ZW"/>
|
1697
|
+
</xs:restriction>
|
1698
|
+
</xs:simpleType>
|
1699
|
+
</xs:attribute>
|
1700
|
+
</xs:complexType>
|
1701
|
+
<xs:attribute name="clientReferenceId" type="xs:string" default="EN"/>
|
1702
|
+
<xs:attribute name="providerReferenceId" type="xs:string" default="EN"/>
|
1703
|
+
<xs:complexType name="AlertType">
|
1704
|
+
<xs:sequence>
|
1705
|
+
<xs:element name="AlertNumber" type="xs:string" minOccurs="0"/>
|
1706
|
+
<xs:element name="AlertName" type="xs:string" minOccurs="0"/>
|
1707
|
+
<xs:element name="AlertCode" type="xs:string" minOccurs="0"/>
|
1708
|
+
<xs:element name="AlertFlagColor" type="xs:string" minOccurs="0"/>
|
1709
|
+
<xs:element name="AlertColor" type="xs:string" minOccurs="0"/>
|
1710
|
+
</xs:sequence>
|
1711
|
+
</xs:complexType>
|
1712
|
+
<xs:complexType name="ScreeningResultsType">
|
1713
|
+
<xs:sequence>
|
1714
|
+
<xs:element name="InternetWebAddress" type="xs:string" minOccurs="0">
|
1715
|
+
<xs:annotation>
|
1716
|
+
<xs:documentation>URL to the order viewing on CPScreen website</xs:documentation>
|
1717
|
+
</xs:annotation>
|
1718
|
+
</xs:element>
|
1719
|
+
<xs:element name="Text" type="xs:string" minOccurs="0"/>
|
1720
|
+
</xs:sequence>
|
1721
|
+
<xs:attribute name="mediaType" use="required">
|
1722
|
+
<xs:simpleType>
|
1723
|
+
<xs:restriction base="xs:NMTOKEN">
|
1724
|
+
<xs:enumeration value="html"/>
|
1725
|
+
<xs:enumeration value="txt"/>
|
1726
|
+
</xs:restriction>
|
1727
|
+
</xs:simpleType>
|
1728
|
+
</xs:attribute>
|
1729
|
+
</xs:complexType>
|
1730
|
+
<xs:simpleType name="DegreeType">
|
1731
|
+
<xs:annotation>
|
1732
|
+
<xs:documentation>List of edcation degree types. Other values are allowed by prefixing them with an "x:".</xs:documentation>
|
1733
|
+
</xs:annotation>
|
1734
|
+
<xs:union memberTypes="DegreeTypes xStringPatternExtensionType"/>
|
1735
|
+
</xs:simpleType>
|
1736
|
+
<xs:simpleType name="DegreeTypes">
|
1737
|
+
<xs:restriction base="xs:string">
|
1738
|
+
<xs:enumeration value="highschool"/>
|
1739
|
+
<xs:enumeration value="vocational"/>
|
1740
|
+
<xs:enumeration value="certification"/>
|
1741
|
+
<xs:enumeration value="associates"/>
|
1742
|
+
<xs:enumeration value="bachelors"/>
|
1743
|
+
<xs:enumeration value="masters"/>
|
1744
|
+
<xs:enumeration value="doctorate"/>
|
1745
|
+
<xs:enumeration value="postdoctorate"/>
|
1746
|
+
<xs:enumeration value="professional"/>
|
1747
|
+
<xs:enumeration value="GED"/>
|
1748
|
+
<xs:enumeration value="other"/>
|
1749
|
+
</xs:restriction>
|
1750
|
+
</xs:simpleType>
|
1751
|
+
<xs:simpleType name="xStringPatternExtensionType">
|
1752
|
+
<xs:restriction base="xs:string">
|
1753
|
+
<xs:pattern value="x:\S.*"/>
|
1754
|
+
</xs:restriction>
|
1755
|
+
</xs:simpleType>
|
1756
|
+
<xs:complexType name="ErrorReportType">
|
1757
|
+
<xs:sequence>
|
1758
|
+
<xs:element name="ErrorCode" type="xs:string" minOccurs="0"/>
|
1759
|
+
<xs:element name="ErrorDescription" type="xs:string" minOccurs="0"/>
|
1760
|
+
</xs:sequence>
|
1761
|
+
</xs:complexType>
|
1762
|
+
</xs:schema>
|