forked from Gerstep/EDCI-Data-Model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
edci_simpleContentTypes.xsd
617 lines (613 loc) · 26 KB
/
edci_simpleContentTypes.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
<?xml version="1.0" encoding="UTF-8"?>
<!-- xsd version '0.4.0' based on edci model version '0.5.0' -->
<xs:schema xmlns="http://data.europa.eu/europass/model/credentials#" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:eup="http://data.europa.eu/europass/model/credentials#" xmlns:cred="http://data.europa.eu/europass/model/credentials/w3c#" targetNamespace="http://data.europa.eu/europass/model/credentials#" elementFormDefault="qualified" version="0.4.0">
<xs:include schemaLocation="edci_individuals.xsd"/>
<xs:complexType name="LanguageStringType">
<xs:annotation>
<xs:documentation>A character string (i.e. a finite set of characters) in the form of words of a language.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="lang" type="LanguageCharCodeEnumType" use="required">
<xs:annotation>
<xs:documentation>The language used in the character string.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="TextType">
<xs:annotation>
<xs:documentation>A formatted character string (i.e. a finite set of characters) in the form of words of a language.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="lang" type="LanguageCharCodeEnumType" use="required">
<xs:annotation>
<xs:documentation>The language used in the text</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="content-type" type="TextContentTypeCodeEnumType" use="required">
<xs:annotation>
<xs:documentation>The text format specified by the corresponding mimetype (text/plain, text/html)</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="NoteType">
<xs:annotation>
<xs:documentation>A formatted and annotated text fragment.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="text" type="TextType">
<xs:annotation>
<xs:documentation>A formatted character string (i.e. a finite set of characters) generally in the form of words of a language.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="subject" type="SubjectTypeCodeType" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>A subject or topic that is described in the text.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="NotationType">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="schemeID" type="xs:anyURI" use="required">
<xs:annotation>
<xs:documentation>The syntax encoding scheme. A particular system of notations or classification codes.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="IdentifierType">
<xs:annotation>
<xs:documentation xml:lang="en">
Identifiers are needed to identify and link resources in a unique and persistent way.
A resource identifier must be unique and persistent, meaning the identifier will always refer to the same resource and cannot be reused to identify other resources.
A resource identifier consists of:
- a string identifier, unique and persistent within the scope of the issuing system.
- a unique identifier of the publishing system that issued the string identifier for that particular resource.
The combination of both, the string identifier and the unique identifier of the issuing system, makes the resource identifier globally unique.
The IdentifierType is used to describe a full (alternative) identifier of an entity or resource.
- The text content of the IdentifierType-element contains the character string to identify and distinguish uniquely the resource within the scope of the identification scheme
- The schemeID attribute is used to specify the identifier scheme. The identifier schema (or identifier register) refers to the agent/system that issued the identifier, it specifies where the identifier originates from.
It is the namespace in which the identifier is unique and persistent.
The other attributes of the IdentifierType-element provide supplementary information such as the identifier of the used code list and the agency that maintains this list
</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:normalizedString">
<xs:attribute name="schemeID" type="xs:normalizedString" use="optional">
<xs:annotation>
<xs:documentation>Identification of the identifier scheme or the identifier register (~ the managing/originating system of the identifier). This can be seen as the namespace in which the assigned identifier is unique.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="schemeAgencyID" type="xs:normalizedString">
<xs:annotation>
<xs:documentation>Identification of the agent that manages the identifier scheme. The agent that issued the identifier.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="schemeAgencyName" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>The name of the agent that manages the identifier scheme. The agent that issued the identifier.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="issuedDate" type="xs:dateTime">
<xs:annotation>
<xs:documentation>The date on which the identifier was issued.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="type" type="xs:token" use="optional">
<xs:annotation>
<xs:documentation>A code used to classify the type of identifier</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="spatialID" type="LocationCodeContentType" use="optional">
<xs:annotation>
<xs:documentation>The related country or region code (jurisdiction) of a legal identifier. A legal identifier is a formally issued identifier by a given authorithy within a given jurisdiction. The identifier has a spatial context. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="LegalIdentifierType">
<xs:simpleContent>
<xs:restriction base="IdentifierType">
<xs:attribute name="spatialID" type="LocationCodeContentType" use="required"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="CodeType">
<xs:annotation>
<xs:documentation xml:lang="en">
A term from a controlled vocabulary.
A code is a character string of letters, numbers, special characters (except escape sequences), and symbols.
It represents a definitive value, a method, or a property description in an abbreviated or language-independent form that is part of a finite list of allowed values.
The CodeType is used for all elements that are used to enable a common coded value representation. Typical example of code types are: Country Code and Language Code.
The CodeType should be used in case of a finite list of allowed values. The IdentifierType should be used in case of an infinite set of objects.
The text content of the CodeType-element is a character string that for brevity and/or languange independence may be used to represent or replace a definitive value or text of an attribute.
The attributes of the CodeType-element provide supplementary information such as the identifier of the used code list and the agency that maintains this list.
</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:normalizedString">
<xs:attribute name="uri" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">
A URI identifier of the code
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="listID" type="xs:normalizedString" use="optional">
<xs:annotation>
<xs:documentation xml:lang="en">
The code List Identifier. The identification of a list of codes.
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="URIBasedCodeType">
<xs:annotation>
<xs:documentation>A code (i.e a code from a controlled vocabulary) that can be fully identified by a URI</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:restriction base="CodeType">
<xs:pattern value=""/>
<xs:attribute name="uri" use="required">
<xs:annotation>
<xs:documentation>A URI identifier of the code</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="listID" use="prohibited"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="ColorNotationType">
<xs:simpleContent>
<xs:restriction base="NotationType">
<xs:pattern value="#([0-9]|[A-F]){6}"/>
<xs:attribute name="schemeID" use="required">
<xs:simpleType>
<xs:restriction base="xs:anyURI">
<xs:enumeration value="http://data.europa.eu/europass/colorNotation/hexadecimal"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="LocationCodeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="LocationCodeContentType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies a location(i.e. a country or region)</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="CountryCodeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="CountryCodeContentType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies a country</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="GenderCodeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="GenderEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the gender</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="IscedFOetCodeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="IscedFOetCodeEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the ISCED FoET 2013 classification.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="EQFLevelType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="EQFLevelEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the EQF level.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="LearningOutcomeTypeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="LearningOutcomeTypeEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the skill type.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="ReusabilityLevelType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="ReusabilityLevelEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the reusability level.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="SkillAlignmentTypeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="SkillAlignmentTypeEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the semantics of the alignment to the ESCO skill.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="QualificationFrameworkType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="QualificationFrameworkEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the qualification framework.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="LearningSettingTypeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="LearningSettingTypeEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the type of learning (the learning setting).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="LearningModeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="LearningModeTypeEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the type of learning or assessment</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="CredentialTypeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="CredentialTypeEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the type of credential.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="ActivityTypeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="ActivityTypeEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the type of activity.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="LearningOpportunityTypeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="LearningOpportunityTypeEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the type of learning opportunity.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="TargetGroupCodeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="TargetGroupCodeEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the target group of a learning opportunity.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="AssessmentTypeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="AssessmentTypeEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the type of assessment.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="IDVerificationMethodType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="IDVerificationMethodEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the method of ID verification.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="LearningScheduleTypeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="LearningScheduleTypeEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the learning schedule of learning opportunity.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="EscoOrganizationTypeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="EscoOrganizationTypeEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the esco organization category.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="AccreditationTypeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="AccreditationTypeEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifiesy the type of accreditation.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="EntitlementTypeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="EntitlementTypeEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the type of entitlement.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="EntitlementStatusType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="EntitlementStatusEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the status of the entitlement.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="LanguageCodeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="LanguageEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the language.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="SubjectTypeCodeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="SubjectTypeCodeEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the topic or subject of a text or document.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="CommunicationChannelTypeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="CommunicationChannelEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the type of communication channel.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="CommunicationChannelUsageType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="CommunicationChannelUseEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the type of use of the communication channel.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="MediaTypeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="MediaTypeEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the mediatype of a media object.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="ImageMediaTypeType">
<xs:simpleContent>
<xs:restriction base="MediaTypeType">
<xs:attribute name="uri" type="ImageMediaTypeEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the mediatype of an image object.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="ContentEncodingType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="ContentEncodingEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the encoding applied to encode the binary data contents of a media resource.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="NumericScoreType">
<xs:simpleContent>
<xs:extension base="xs:decimal">
<xs:attribute name="schemeID" type="xs:normalizedString" use="optional">
<xs:annotation>
<xs:documentation>The grading or scoring scheme ID. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="TextScoreType">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="schemeID" type="xs:normalizedString" use="optional">
<xs:annotation>
<xs:documentation>The grading or scoring scheme ID. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="CreditPointsType">
<xs:simpleContent>
<xs:restriction base="NumericScoreType">
<xs:attribute name="schemeID" type="CreditPointSystemEnumType" use="optional">
<xs:annotation>
<xs:documentation>The credit point system used when assigning credits to a learning specification (e.g ECVET)</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="ECTSCreditPointsType">
<xs:simpleContent>
<xs:restriction base="NumericScoreType">
<xs:attribute name="schemeID" type="ECTSCreditPointSystemEnumType" use="optional">
<xs:annotation>
<xs:documentation>The credit point system used when assigning credits to a learning specification (e.g ECTS credit points system)</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="AmountType">
<xs:simpleContent>
<xs:extension base="xs:decimal">
<xs:attribute name="unit" type="CurrencyEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the currency in which the amount is indicated/expressed.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="VerificationCheckCodeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="VerificationCheckCodeEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the type of learning or assessment</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="VerificationStatusCodeType">
<xs:simpleContent>
<xs:restriction base="URIBasedCodeType">
<xs:attribute name="uri" type="VerificationStatusEnumType" use="required">
<xs:annotation>
<xs:documentation>The URI identifier of a known code that indicates/specifies the type of learning or assessment</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="IdReferenceType">
<xs:annotation>
<xs:documentation>A link or reference to another entity record in the credential document.</xs:documentation>
</xs:annotation>
<xs:attribute name="idref" type="xs:anyURI" use="required">
<xs:annotation>
<xs:documentation>The id of the referenced entity (record).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:simpleType name="IdType">
<xs:annotation>
<xs:documentation>A portable identifier of an entity (i.e. a urn in the uuid namespace).</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:anyURI"/>
</xs:simpleType>
<xs:simpleType name="DocumentURLType">
<xs:restriction base="xs:anyURI">
<xs:pattern value="http://.*"/>
<xs:pattern value="https://.*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="MailToUriType">
<xs:annotation>
<xs:documentation xml:lang="en">
mailto: URI scheme conform to RFC 2368.
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:anyURI">
<xs:pattern value="mailto:.*"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>