-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathopenaire-cerif-profile.xsd
1675 lines (1658 loc) · 127 KB
/
openaire-cerif-profile.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
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?><xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="https://www.openaire.eu/cerif-profile/1.2/" xmlns:cf="urn:xmlns:org.eurocris.cerif" xmlns:cflink="https://w3id.org/cerif/annotations#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="https://www.openaire.eu/cerif-profile/1.2/" xml:lang="en" xsi:schemaLocation="http://www.w3.org/2001/XMLSchema https://www.w3.org/2001/XMLSchema.xsd">
<xs:annotation>
<xs:documentation>This is the XML Schema for the OpenAIRE CERIF profile 1.2,
a companion artifact of the OpenAIRE Guidelines for CRIS Managers 1.2 (https://openaire-guidelines-for-cris-managers.readthedocs.io/en/v1.2.0/index.html, https://doi.org/10.5281/zenodo.8050936).
This work is licensed under a Creative Commons Attribution 4.0 International License (http://creativecommons.org/licenses/by/4.0/).
</xs:documentation>
<xs:appinfo>
<sch:ns xmlns:sch="http://purl.oclc.org/dsdl/schematron" xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc" prefix="oacf" uri="https://www.openaire.eu/cerif-profile/1.2/"/>
</xs:appinfo>
<xs:appinfo>
<sch:pattern xmlns:sch="http://purl.oclc.org/dsdl/schematron" xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc">
<sch:title>Occurrence of "uri" implies an OAMandate is mandated</sch:title>
<sch:rule context="oacf:OAMandate">
<sch:report test="@uri and not ( @mandated = 'true' )">If the URI of an Open Access policy is given, "mandated" must be set true</sch:report>
</sch:rule>
</sch:pattern>
</xs:appinfo>
</xs:annotation>
<xs:import namespace="https://www.openaire.eu/cerif-profile/vocab/OpenAIRE_Funding_Types" schemaLocation="./vocabularies/openaire_funding_types.xsd"/>
<xs:import namespace="https://www.openaire.eu/cerif-profile/vocab/COAR_Publication_Types" schemaLocation="./vocabularies/coar_publication_types.xsd"/>
<xs:import namespace="https://www.openaire.eu/cerif-profile/vocab/COAR_Patent_Types" schemaLocation="./vocabularies/coar_patent_types.xsd"/>
<xs:import namespace="https://www.openaire.eu/cerif-profile/vocab/COAR_Product_Types" schemaLocation="./vocabularies/coar_product_types.xsd"/>
<xs:import namespace="https://www.openaire.eu/cerif-profile/vocab/OpenAIRE_Service_Compatibility" schemaLocation="./vocabularies/openaire_service_compatibilities.xsd"/>
<xs:include schemaLocation="./includes/person-identifiers.xsd">
<xs:annotation>
<xs:documentation>The person identifiers.</xs:documentation>
</xs:annotation>
</xs:include>
<xs:include schemaLocation="./includes/orgunit-identifiers.xsd">
<xs:annotation>
<xs:documentation>The orgunit identifiers.</xs:documentation>
</xs:annotation>
</xs:include>
<xs:include schemaLocation="./includes/funding-identifiers.xsd">
<xs:annotation>
<xs:documentation>The funding identifiers.</xs:documentation>
</xs:annotation>
</xs:include>
<xs:include schemaLocation="./includes/publication-identifiers.xsd">
<xs:annotation>
<xs:documentation>The publication identifiers.</xs:documentation>
</xs:annotation>
</xs:include>
<xs:include schemaLocation="./includes/patent-identifiers.xsd">
<xs:annotation>
<xs:documentation>The patent identifiers.</xs:documentation>
</xs:annotation>
</xs:include>
<xs:include schemaLocation="./includes/product-identifiers.xsd">
<xs:annotation>
<xs:documentation>The product identifiers.</xs:documentation>
</xs:annotation>
</xs:include>
<xs:import namespace="http://purl.org/coar/access_right" schemaLocation="./vocabularies/coar_accessrights.xsd"/>
<xs:include schemaLocation="./includes/cerif-commons.xsd">
<xs:annotation>
<xs:documentation>The common building blocks for any CERIF XML Schema.</xs:documentation>
</xs:annotation>
</xs:include>
<xs:element cflink:entity="https://w3id.org/cerif/model#Person" name="Person" substitutionGroup="Person__SubstitutionGroupHead">
<xs:annotation>
<xs:documentation>
A human being as an individual.
Source: https://en.oxforddictionaries.com/definition/person
The kind of involvement of a Person in the research ecosystem is specified in the links with the organisations, the services, etc. This typically includes:
(1) researchers (Persons performing research in an Organisation Unit as employees or students);
(2) authors and contributors (Persons signing a publication, creators of data sets, software developers, etc.);
(3) investigators and project participants (Persons involved in a Project as principal investigators, co investigators, project managers, consultants, etc.);
(4) management (directors, rectors, deans, department heads, etc.);
(5) support staffs (technicians, responsible for Equipment, librarians and digital asset curators, administrative staff, etc.).
One Person typically has many of these relationships.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="Person__BaseType">
<xs:sequence minOccurs="0">
<xs:element cflink:entity="https://w3id.org/cerif/model#PersonName" minOccurs="0" name="PersonName">
<xs:annotation>
<xs:documentation>The name of the person</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="cfIdAttr__BaseType">
<xs:sequence>
<xs:element cflink:attribute="https://w3id.org/cerif/model#PersonName.FamilyNames" minOccurs="0" name="FamilyNames" type="cfString__Type"/>
<xs:element cflink:attribute="https://w3id.org/cerif/model#PersonName.FirstNames" minOccurs="0" name="FirstNames" type="cfString__Type"/>
<xs:element cflink:attribute="https://w3id.org/cerif/model#PersonName.OtherNames" minOccurs="0" name="OtherNames" type="cfString__Type"/>
<xs:group ref="__TheRestGroup"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#Person.Gender" minOccurs="0" name="Gender">
<xs:annotation>
<xs:documentation>The gender of the person. Leave out in case the gender is unknown or not communicated.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:annotation>
<xs:documentation>Genders (sociocultural, not linguistic)</xs:documentation>
<xs:appinfo>
<cf:ClassScheme id="http://publications.europa.eu/resource/authority/human-sex">
<cf:Name xml:lang="en">Genders (sociocultural, not linguistic)</cf:Name>
</cf:ClassScheme>
</xs:appinfo>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="m">
<xs:annotation>
<xs:documentation>Masculine</xs:documentation>
<xs:appinfo>
<cf:Class classSchemeId="http://publications.europa.eu/resource/authority/human-sex" id="http://publications.europa.eu/resource/authority/human-sex/MALE">
<cf:Term xml:lang="en">Male</cf:Term>
</cf:Class>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="f">
<xs:annotation>
<xs:documentation>Feminine</xs:documentation>
<xs:appinfo>
<cf:Class classSchemeId="http://publications.europa.eu/resource/authority/human-sex" id="http://publications.europa.eu/resource/authority/human-sex/FEMALE">
<cf:Term xml:lang="en">Female</cf:Term>
</cf:Class>
</xs:appinfo>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:group ref="PersonIdentifiers__Group"/>
<xs:element cflink:entity="https://w3id.org/cerif/model#ElectronicAddress" maxOccurs="unbounded" minOccurs="0" name="ElectronicAddress" type="xs:anyURI">
<xs:annotation>
<xs:documentation>An electronic address associated with the person</xs:documentation>
</xs:annotation>
</xs:element>
<!-- ... -->
<xs:element cflink:link="https://w3id.org/cerif/model#Person_OrganisationUnit(https://w3id.org/cerif/vocab/PersonOrganisationRoles#Affiliation)" maxOccurs="unbounded" minOccurs="0" name="Affiliation">
<xs:annotation>
<xs:documentation>The organisation or organisation unit the person is affiliated with</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="cfLink__BaseType">
<xs:choice>
<xs:element ref="OrgUnit"/>
</xs:choice>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:group ref="__TheRestGroup"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element cflink:entity="https://w3id.org/cerif/model#OrganisationUnit" name="OrgUnit" substitutionGroup="OrgUnit__SubstitutionGroupHead">
<xs:annotation>
<xs:documentation>Organisation Unit: an organisation, a unit therein, a committee or any other group of people that has a collective goal. Organisation Units are not necessarily formalized as legal entities.
In the research information domain Organisation Units typically represents:
(1) organisations that perform research (universities, research institutes, corporations) and their subdivisions (faculties, schools, departments, research groups) and other associated bodies (boards, advisory bodies);
(2) organisations that fund research (funders, their divisions and evaluation panels);
(3) scientific associations and networks;
(4) publishers, facility operators and other service providers in the research space;
(5) authorities, such as patent offices and standardization or supervision bodies; and
(6) other bodies: editorial boards, evaluation panels, or committees of all kinds.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="OrgUnit__BaseType">
<xs:sequence minOccurs="0">
<xs:element cflink:link="https://w3id.org/cerif/model#OrganisationUnit_Classification" maxOccurs="unbounded" minOccurs="0" name="Type" type="cfGenericURIClassification__Type">
<xs:annotation>
<xs:documentation>The type of the organisation unit</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#OrganisationUnit.Acronym" minOccurs="0" name="Acronym" type="cfString__Type">
<xs:annotation>
<xs:documentation>The acronym of the organisation unit</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#OrganisationUnit.Name" maxOccurs="unbounded" minOccurs="0" name="Name" type="cfMLangString__Type">
<xs:annotation>
<xs:documentation>The name of the organisation unit</xs:documentation>
</xs:annotation>
</xs:element>
<xs:group ref="OrgUnitIdentifiers__Group"/>
<!-- ... -->
<xs:element cflink:entity="https://w3id.org/cerif/model#ElectronicAddress" maxOccurs="unbounded" minOccurs="0" name="ElectronicAddress" type="xs:anyURI">
<xs:annotation>
<xs:documentation>An electronic address associated with the organisation unit</xs:documentation>
</xs:annotation>
</xs:element>
<!-- ... -->
<xs:element cflink:link="https://w3id.org/cerif/model#OrganisationUnit_OrganisationUnit(https://w3id.org/cerif/vocab/InterOrganisationalStructure#Part):1" maxOccurs="unbounded" minOccurs="0" name="PartOf">
<xs:annotation>
<xs:documentation>Link to the larger unit that encompasses this unit.
To be used for the immediate parents only. In order to represent the full path up through the hierarchy of an institution, use this construct recursively.
In specific cases there may be several such parents at one time in parallel.
An example: a interdisciplinary research centre within a university can be subordinated to several faculties.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="cfLinkWithDisplayName__BaseType">
<xs:sequence>
<xs:element ref="OrgUnit"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<!-- ... -->
<xs:group ref="__TheRestGroup"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element abstract="true" name="ProjectFunding__SubstitutionGroupHead" substitutionGroup="Individual__SubstitutionGroupHead" type="ProjectFunding__BaseType">
<xs:annotation>
<xs:documentation>Project or Funding</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="ProjectFunding__BaseType">
<xs:annotation>
<xs:documentation>A common supertype for projects and funding</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="cfIdAttr__BaseType"/>
</xs:complexContent>
</xs:complexType>
<xs:element cflink:entity="https://w3id.org/cerif/model#Project" name="Project" substitutionGroup="ProjectFunding__SubstitutionGroupHead">
<xs:annotation>
<xs:documentation>A temporary endeavor undertaken to create a unique product, service or result.
Source: the Project Management Institute, https://www.pmi.org/about/learn-about-pmi/what-is-project-management
In the research information domain, one typically tracks:
(1) research projects, where the result is an addition to the body of knowledge of the mankind,
(2) technology development projects, where the result is a particular technology or product,
(3) innovation projects, where the result is an improvement of a product or process, and
(4) projects that create or enhance infrastructure for research, technology development or innovation.
Depending on the scope one can also track finer levels of granularity: stages, work packages, sometimes even down to individual tasks. All such activities are also modelled using the Project entity and linked using the recursive link relationship.
The Project entity only captures details of the project scope and plan. Information about the resources needed to execute the project such as the funding (i.e., the grants received), the people and organisations involved, the supporting infrastructures, the outputs produced, etc. is contained in separate entities (the Funding entity, the Person entity, the OrgUnit entity, the infrastructure entities, the result entities respectively) and is linked to the Project.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="ProjectFunding__BaseType">
<xs:sequence minOccurs="0">
<xs:element cflink:link="https://w3id.org/cerif/model#Project_Classification" maxOccurs="unbounded" minOccurs="0" name="Type" type="cfGenericURIClassification__Type">
<xs:annotation>
<xs:documentation>The type of the project</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#Project.Acronym" minOccurs="0" name="Acronym" type="cfString__Type">
<xs:annotation>
<xs:documentation>The acronym of the project</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#Project.Title" maxOccurs="unbounded" minOccurs="0" name="Title" type="cfMLangString__Type">
<xs:annotation>
<xs:documentation>The title of the project</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:identifier="true" maxOccurs="unbounded" minOccurs="0" name="Identifier" type="cfGenericIdentifier__Type">
<xs:annotation>
<xs:documentation>An identifier of the project</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#Project.StartDate" minOccurs="0" name="StartDate" type="cfDate__Type">
<xs:annotation>
<xs:documentation>The start date of the project</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#Project.EndDate" minOccurs="0" name="EndDate" type="cfDate__Type">
<xs:annotation>
<xs:documentation>The end date of the project</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:container="unordered" minOccurs="0" name="Consortium">
<xs:annotation>
<xs:documentation>The consortium of the project: the organisations (persons) who are contractually bound to do the work in the project</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element cflink:link="https://w3id.org/cerif/model#Project_OrganisationUnit(https://w3id.org/cerif/vocab/OrganisationProjectEngagements#Coordinator) https://w3id.org/cerif/model#Project_Person(https://w3id.org/cerif/vocab/PersonProjectEngagements#Coordinator)" maxOccurs="unbounded" minOccurs="0" name="Coordinator" type="cfLinkWithDisplayNameToPersonOrOrgUnit__Type">
<xs:annotation>
<xs:documentation>Project coordinator</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#Project_OrganisationUnit(https://w3id.org/cerif/vocab/OrganisationProjectEngagements#Partner) https://w3id.org/cerif/model#Project_Person(https://w3id.org/cerif/vocab/PersonProjectEngagements#Partner)" maxOccurs="unbounded" minOccurs="0" name="Partner" type="cfLinkWithDisplayNameToPersonOrOrgUnit__Type">
<xs:annotation>
<xs:documentation>Project partner</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#Project_OrganisationUnit(https://w3id.org/cerif/vocab/OrganisationProjectEngagements#Contractor) https://w3id.org/cerif/model#Project_Person(https://w3id.org/cerif/vocab/PersonProjectEngagements#Contractor)" maxOccurs="unbounded" minOccurs="0" name="Contractor" type="cfLinkWithDisplayNameToPersonOrOrgUnit__Type">
<xs:annotation>
<xs:documentation>Project contractor</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#Project_OrganisationUnit(https://w3id.org/cerif/vocab/OrganisationProjectEngagements#InkindContributor) https://w3id.org/cerif/model#Project_Person(https://w3id.org/cerif/vocab/PersonProjectEngagements#InkindContributor)" maxOccurs="unbounded" minOccurs="0" name="InkindContributor" type="cfLinkWithDisplayNameToPersonOrOrgUnit__Type">
<xs:annotation>
<xs:documentation>Project in kind contributor</xs:documentation>
</xs:annotation>
</xs:element>
<xs:sequence/>
<xs:element cflink:link="https://w3id.org/cerif/model#Project_OrganisationUnit(https://w3id.org/cerif/vocab/OrganisationProjectEngagements#ConsortiumMember) https://w3id.org/cerif/model#Project_Person(https://w3id.org/cerif/vocab/PersonProjectEngagements#ConsortiumMember)" maxOccurs="unbounded" minOccurs="0" name="Member" type="cfLinkWithDisplayNameToPersonOrOrgUnit__Type">
<xs:annotation>
<xs:documentation>A member of the project consortium</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element cflink:container="unordered" minOccurs="0" name="Team">
<xs:annotation>
<xs:documentation>The project team: the persons who carry out the work in the project, typically as a part of their job at the organisations from the consortium</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element cflink:link="https://w3id.org/cerif/model#Project_Person(https://w3id.org/cerif/vocab/PersonProjectEngagements#PrincipalInvestigator)" maxOccurs="unbounded" minOccurs="0" name="PrincipalInvestigator" type="cfLinkWithDisplayNameToPersonWithAffiliations__Type">
<xs:annotation>
<xs:documentation>The principal investigator: the person responsible for the whole project, the head of the project team</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#Project_Person(https://w3id.org/cerif/vocab/PersonProjectEngagements#OrganisationContact)" maxOccurs="unbounded" minOccurs="0" name="Contact" type="cfLinkWithDisplayNameToPersonWithAffiliations__Type">
<xs:annotation>
<xs:documentation>A person to contact in matters connected with her/his organisations' participation in the project</xs:documentation>
</xs:annotation>
</xs:element>
<xs:sequence/>
<xs:element cflink:link="https://w3id.org/cerif/model#Project_Person(https://w3id.org/cerif/vocab/PersonProjectEngagements#TeamMember)" maxOccurs="unbounded" minOccurs="0" name="Member" type="cfLinkWithDisplayNameToPersonWithAffiliations__Type">
<xs:annotation>
<xs:documentation>A member of the project team</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element cflink:container="unordered" maxOccurs="unbounded" minOccurs="0" name="Funded">
<xs:annotation>
<xs:documentation>Information about funding of this project</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element cflink:link="https://w3id.org/cerif/model#Project_OrganisationUnit(https://w3id.org/cerif/vocab/OrganisationProjectEngagements#Funder)" minOccurs="0" name="By" type="cfLinkWithDisplayNameToPersonOrOrgUnit__Type">
<xs:annotation>
<xs:documentation>The funder of the project</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#Project_Funding(https://w3id.org/cerif/vocab/ProjectFundingRelations#Support)" minOccurs="0" name="As">
<xs:annotation>
<xs:documentation>The specific funding device (grant, award, contract) for the project</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="cfLink__BaseType">
<xs:sequence>
<xs:element ref="Funding"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="cfExtension__AttributeGroup"/>
</xs:complexType>
</xs:element>
<xs:sequence/>
<xs:element cflink:link="https://w3id.org/cerif/model#Project_Classification" maxOccurs="unbounded" minOccurs="0" name="Subject" type="cfGenericURIClassification__Type">
<xs:annotation>
<xs:documentation>The subject classification(s) of the project</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#Project.Keywords" maxOccurs="unbounded" minOccurs="0" name="Keyword" type="cfMLangString__Type">
<xs:annotation>
<xs:documentation>A single keyword or key expression that characterize the project. Please repeat to serialize separate keywords or key expressions.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#Project.Abstract" maxOccurs="unbounded" minOccurs="0" name="Abstract" type="cfMLangAnyMixed__Type">
<xs:annotation>
<xs:documentation>The abstract of the project</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#Project_Classification" maxOccurs="unbounded" minOccurs="0" name="Status" type="cfGenericURIClassification__Type">
<xs:annotation>
<xs:documentation>The status of the project</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#Project_Equipment(https://w3id.org/cerif/vocab/ProjectResearchInfrastructureRelations#User)" maxOccurs="unbounded" minOccurs="0" name="Uses">
<xs:annotation>
<xs:documentation>The equipment this project uses</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="cfLink__BaseType">
<xs:choice>
<xs:element ref="Equipment"/>
</xs:choice>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element maxOccurs="unbounded" minOccurs="0" name="OAMandate">
<xs:annotation>
<xs:documentation>Information about the Open Access mandate that applies to this project</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute cflink:link="https://w3id.org/cerif/model#Project_Classification(https://w3id.org/cerif/vocab/OpenAccessMandatedFlag)" name="mandated" type="xs:boolean" use="required">
<xs:annotation>
<xs:documentation>The flag if Open Access is mandated in the project</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute cflink:link="https://w3id.org/cerif/model#Project_Classification(https://w3id.org/cerif/vocab/OpenAccessMandate)" name="uri" type="xs:anyURI" use="optional">
<xs:annotation>
<xs:documentation>The Open Access policy that applies to the project</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="cfStartDateEndDate__AttributeGroup"/>
<xs:attributeGroup ref="cfExtension__AttributeGroup"/>
</xs:complexType>
</xs:element>
<xs:group ref="__TheRestGroup"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element cflink:entity="https://w3id.org/cerif/model#Funding" name="Funding" substitutionGroup="ProjectFunding__SubstitutionGroupHead">
<xs:annotation>
<xs:documentation/>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="ProjectFunding__BaseType">
<xs:sequence minOccurs="0">
<xs:element xmlns="https://www.openaire.eu/cerif-profile/vocab/OpenAIRE_Funding_Types" cflink:link="https://w3id.org/cerif/model#Funding_Classification" ref="Type">
<xs:annotation>
<xs:documentation>The type of the funding</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#Funding.Acronym" minOccurs="0" name="Acronym" type="cfString__Type">
<xs:annotation>
<xs:documentation>The acronym of the funding</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#Funding.Name" maxOccurs="unbounded" minOccurs="0" name="Name" type="cfMLangString__Type">
<xs:annotation>
<xs:documentation>The name of the funding</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#Funding.Amount https://w3id.org/cerif/model#Funding.CurrencyCode" minOccurs="0" name="Amount" type="cfAmount__Type">
<xs:annotation>
<xs:documentation>The amount of the funding and its currency</xs:documentation>
</xs:annotation>
</xs:element>
<xs:group ref="FundingIdentifiers__Group"/>
<xs:element cflink:attribute="https://w3id.org/cerif/model#Funding.Description" maxOccurs="unbounded" minOccurs="0" name="Description" type="cfMLangString__Type">
<xs:annotation>
<xs:documentation>A description of the funding</xs:documentation>
</xs:annotation>
</xs:element>
<xs:sequence/>
<xs:element cflink:link="https://w3id.org/cerif/model#Funding_Classification" maxOccurs="unbounded" minOccurs="0" name="Subject" type="cfGenericURIClassification__Type">
<xs:annotation>
<xs:documentation>The subject classification(s) of the funding</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#Funding.Keywords" maxOccurs="unbounded" minOccurs="0" name="Keyword" type="cfMLangString__Type">
<xs:annotation>
<xs:documentation>A single keyword or key expression that characterize the funding. Please repeat to serialize separate keywords or key expressions.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#OrganisationUnit_Funding(https://w3id.org/cerif/vocab/OrganisationFundingRoles#Financier)" maxOccurs="unbounded" minOccurs="0" name="Funder" type="cfLinkWithDisplayNameToPersonOrOrgUnit__Type">
<xs:annotation>
<xs:documentation>The funder or funders</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#Funding_Funding(https://w3id.org/cerif/vocab/InterFundingRelations#Part):1" minOccurs="0" name="PartOf">
<xs:annotation>
<xs:documentation>Chain up to the larger funding that encompasses this funding</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="cfLinkWithDisplayName__BaseType">
<xs:sequence>
<xs:element ref="Funding"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#Funding_Classification(https://w3id.org/cerif/vocab/Durations#FundingDuration)" minOccurs="0" name="Duration" type="cfLink__BaseType">
<xs:annotation>
<xs:documentation>Duration of the funding</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element maxOccurs="unbounded" minOccurs="0" name="OAMandate">
<xs:annotation>
<xs:documentation>Information about the Open Access mandate that applies to this funding</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute cflink:link="https://w3id.org/cerif/model#Funding_Classification(https://w3id.org/cerif/vocab/OpenAccessMandatedFlag)" name="mandated" type="xs:boolean" use="required">
<xs:annotation>
<xs:documentation>The flag if Open Access is mandated for this funding</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute cflink:link="https://w3id.org/cerif/model#Funding_Classification(http://roarmap.eprints.org/)" name="uri" type="xs:anyURI" use="optional">
<xs:annotation>
<xs:documentation>The Open Access policy that applies to this funding</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup ref="cfStartDateEndDate__AttributeGroup"/>
<xs:attributeGroup ref="cfExtension__AttributeGroup"/>
</xs:complexType>
</xs:element>
<xs:group ref="__TheRestGroup"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element abstract="true" name="ResearchOutput__SubstitutionGroupHead" substitutionGroup="Individual__SubstitutionGroupHead" type="ResearchOutput__BaseType">
<xs:annotation>
<xs:documentation>Research outputs: publications, patents, and products</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="ResearchOutput__BaseType">
<xs:annotation>
<xs:documentation>A common supertype for research outputs: publications, patents, and products</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="cfIdAttr__BaseType"/>
</xs:complexContent>
</xs:complexType>
<xs:element cflink:entity="https://w3id.org/cerif/model#ResultPublication" name="Publication" substitutionGroup="ResearchOutput__SubstitutionGroupHead">
<xs:annotation>
<xs:documentation>
A text based scholarly publication or publishing channel that contains results of research.
CRISs typically record metadata about scholarly publications from the scope of the CRIS (institutional CRIS for the institution, funder CRIS for the funding it distributed, etc.) in the context of the research projects, infrastructure, funding, organization units and authors/contributors.
This entity typically represents the granularity level of a single published item for which attribution information is attached (usually in the form of a list of authors and contributors). This entity is also used to represent publishing channels and sources: journals and book series (incl. continuing conference proceedings series).
(Taken from https://doi.org/10.1016/j.procs.2014.06.008)
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="ResearchOutput__BaseType">
<xs:sequence minOccurs="0">
<xs:element xmlns="https://www.openaire.eu/cerif-profile/vocab/COAR_Publication_Types" cflink:link="https://w3id.org/cerif/model#ResultPublication_Classification" ref="Type">
<xs:annotation>
<xs:documentation>The type of the publication</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultPublication_Classification(http://publications.europa.eu/resource/authority/language)" minOccurs="0" name="Language" type="cfString__Type">
<xs:annotation>
<xs:documentation>The language of the publication. Please use the IETF language tags as described in the IETF BCP 47 document.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultPublication.Title" maxOccurs="unbounded" minOccurs="0" name="Title" type="cfMLangString__Type">
<xs:annotation>
<xs:documentation>The title of the publication</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultPublication.Subtitle" maxOccurs="unbounded" minOccurs="0" name="Subtitle" type="cfMLangString__Type">
<xs:annotation>
<xs:documentation>The subtitle of the publication</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultPublication.NameAbbreviation" maxOccurs="unbounded" minOccurs="0" name="NameAbbreviation" type="cfMLangString__Type">
<xs:annotation>
<xs:documentation>The abbreviation of the title of the publication. E.g. the acronym of a journal.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultPublication_ResultPublication(https://w3id.org/cerif/vocab/InterPublicationRelations#Publication):1" minOccurs="0" name="PublishedIn">
<xs:annotation>
<xs:documentation>The source (another Publication) where this publication appeared. E.g. a journal article lists here the journal where it appeared. To be used for a publishing channel.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="cfLink__BaseType">
<xs:sequence>
<xs:element ref="Publication"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultPublication_ResultPublication(https://w3id.org/cerif/vocab/InterPublicationRelations#Part):1" minOccurs="0" name="PartOf">
<xs:annotation>
<xs:documentation>The Publication of which this publication is a part. E.g. a book chapter lists here the book that contains it. To be used for a containing publication.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="cfLinkWithDisplayName__BaseType">
<xs:sequence>
<xs:element ref="Publication"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultPublication.ResultPublicationDate" minOccurs="0" name="PublicationDate" type="cfGenericDateTime__Type">
<xs:annotation>
<xs:documentation>The date the publication appeared</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultPublication.Number" minOccurs="0" name="Number" type="cfString__Type">
<xs:annotation>
<xs:documentation>The number of the publication (e.g. Article Number)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultPublication.Volume" minOccurs="0" name="Volume" type="cfString__Type">
<xs:annotation>
<xs:documentation>The volume of the publishing channel where this publication appeared</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultPublication.Issue" minOccurs="0" name="Issue" type="cfString__Type">
<xs:annotation>
<xs:documentation>The issue of the publishing channel where this publication appeared</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultPublication.Edition" minOccurs="0" name="Edition" type="cfString__Type">
<xs:annotation>
<xs:documentation>The edition of the publication</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultPublication.StartPage" minOccurs="0" name="StartPage" type="cfString__Type">
<xs:annotation>
<xs:documentation>The page where this publication starts, in case the publishing channel or containing publication has numbered pages</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultPublication.EndPage" minOccurs="0" name="EndPage" type="cfString__Type">
<xs:annotation>
<xs:documentation>The page where this publication ends, in case the publishing channel or containing publication has numbered pages</xs:documentation>
</xs:annotation>
</xs:element>
<xs:group ref="PublicationIdentifiers__Group"/>
<xs:element cflink:container="ordered" minOccurs="0" name="Authors">
<xs:annotation>
<xs:documentation>The authors of this publication</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element cflink:link="https://w3id.org/cerif/model#Person_ResultPublication(https://w3id.org/cerif/vocab/PersonOutputContributions#Author) https://w3id.org/cerif/model#OrganisationUnit_ResultPublication(https://w3id.org/cerif/vocab/OrganisationOutputContributions#Author)" maxOccurs="unbounded" minOccurs="0" name="Author" type="cfLinkWithDisplayNameToPersonWithAffiliationsOrOrgUnit__Type"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element cflink:container="ordered" minOccurs="0" name="Editors">
<xs:annotation>
<xs:documentation>The editors of this publication</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element cflink:link="https://w3id.org/cerif/model#Person_ResultPublication(https://w3id.org/cerif/vocab/PersonOutputContributions#Editor) https://w3id.org/cerif/model#OrganisationUnit_ResultPublication(https://w3id.org/cerif/vocab/OrganisationOutputContributions#Editor)" maxOccurs="unbounded" minOccurs="0" name="Editor" type="cfLinkWithDisplayNameToPersonWithAffiliationsOrOrgUnit__Type"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element cflink:container="ordered" minOccurs="0" name="Publishers">
<xs:annotation>
<xs:documentation>The publishers of this publication</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element cflink:link="https://w3id.org/cerif/model#OrganisationUnit_ResultPublication(https://w3id.org/cerif/vocab/OrganisationOutputContributions#Publisher) https://w3id.org/cerif/model#Person_ResultPublication(https://w3id.org/cerif/vocab/PersonOutputContributions#Publisher)" maxOccurs="unbounded" minOccurs="0" name="Publisher" type="cfLinkWithDisplayNameToPersonOrOrgUnit__Type"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultPublication_Classification" maxOccurs="unbounded" minOccurs="0" name="License" type="cfGenericURIClassification__Type">
<xs:annotation>
<xs:documentation>The license of the publication. We recommend using URIs from the SPDX License List (https://spdx.org/licenses/), which includes the Creative Commons licenses.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultPublication_Classification" maxOccurs="unbounded" minOccurs="0" name="Subject" type="cfGenericURIClassification__Type">
<xs:annotation>
<xs:documentation>The subject of the publication from a classification</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultPublication.Keywords" maxOccurs="unbounded" minOccurs="0" name="Keyword" type="cfMLangString__Type">
<xs:annotation>
<xs:documentation>A single keyword or key expression. Please repeat to serialize separate keywords or key expressions.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultPublication.Abstract" maxOccurs="unbounded" minOccurs="0" name="Abstract" type="cfMLangString__Type"/>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultPublication_Classification" maxOccurs="unbounded" minOccurs="0" name="Status" type="cfGenericURIClassification__Type">
<!-- any class scheme of the 'status' character -->
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#Project_ResultPublication(https://w3id.org/cerif/vocab/ProjectOutputRoles#Originator) https://w3id.org/cerif/model#ResultPublication_Funding(https://w3id.org/cerif/vocab/OutputFundingRoles#Originator)" maxOccurs="unbounded" minOccurs="0" name="OriginatesFrom">
<xs:complexType>
<xs:complexContent>
<xs:extension base="cfLink__BaseType">
<xs:sequence>
<xs:element ref="ProjectFunding__SubstitutionGroupHead"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultPublication_Event(https://w3id.org/cerif/vocab/EventOutputRelationships#Presented)" maxOccurs="unbounded" minOccurs="0" name="PresentedAt">
<xs:annotation>
<xs:documentation>The event where this publication was presented.
[[Note: Video recordings of conference presentations are stored as alternative representations of the primary object: the conference paper. It would be unneccessarily complex to represent them as separate, linked Products.]]</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="cfLink__BaseType">
<xs:choice>
<xs:element ref="Event"/>
</xs:choice>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultPublication_Event(https://w3id.org/cerif/vocab/EventOutputRelationships#Output)" maxOccurs="unbounded" minOccurs="0" name="OutputFrom">
<xs:annotation>
<xs:documentation>This publication contains the proceedings from the linked event</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="cfLink__BaseType">
<xs:choice>
<xs:element ref="Event"/>
</xs:choice>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultPublication_Event(https://w3id.org/cerif/vocab/EventOutputRelationships#Coverage)" maxOccurs="unbounded" minOccurs="0" name="Coverage">
<xs:annotation>
<xs:documentation>The event that is covered by this publication (e.g. a report about the event)</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="cfLink__BaseType">
<xs:choice>
<xs:element ref="Event"/>
</xs:choice>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultPublication_ResultPublication(https://w3id.org/cerif/vocab/InterOutputRelations#Reference):1 https://w3id.org/cerif/model#ResultPublication_ResultProduct(https://w3id.org/cerif/vocab/InterOutputRelations#Reference):1 https://w3id.org/cerif/model#ResultPublication_ResultPatent(https://w3id.org/cerif/vocab/InterOutputRelations#Reference):1" maxOccurs="unbounded" minOccurs="0" name="References">
<xs:annotation>
<xs:documentation>Result outputs that are referenced by this publication</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="cfLink__BaseType">
<xs:choice>
<xs:element ref="ResearchOutput__SubstitutionGroupHead"/>
</xs:choice>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element xmlns:ns4="http://purl.org/coar/access_right" cflink:link="https://w3id.org/cerif/model#ResultPublication_Classification(http://purl.org/coar/access_right)" minOccurs="0" ref="ns4:Access">
<xs:annotation>
<xs:documentation>The open access type of the publication</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultPublication_Medium(https://w3id.org/cerif/vocab/MediaRelations#Contents)" minOccurs="0" name="FileLocations">
<xs:annotation>
<xs:documentation>The files that this Publication has as contents.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="cfLink__BaseType">
<xs:choice>
<xs:element maxOccurs="unbounded" minOccurs="0" ref="Medium"/>
</xs:choice>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:group ref="__TheRestGroup"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element cflink:entity="https://w3id.org/cerif/model#ResultPatent" name="Patent" substitutionGroup="ResearchOutput__SubstitutionGroupHead">
<xs:annotation>
<xs:documentation>A set of exclusive rights granted by a sovereign state to an inventor or assignee for a limited period of time in exchange for detailed public disclosure of an invention.
Source: Wikipedia
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="ResearchOutput__BaseType">
<xs:sequence minOccurs="0">
<xs:element xmlns="https://www.openaire.eu/cerif-profile/vocab/COAR_Patent_Types" cflink:link="https://w3id.org/cerif/model#ResultPatent_Classification" ref="Type">
<xs:annotation>
<xs:documentation>The type of the patent (currently just one option)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultPatent.Title" maxOccurs="unbounded" minOccurs="0" name="Title" type="cfMLangString__Type"/>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultPatent.VersionInfo" maxOccurs="unbounded" minOccurs="0" name="VersionInfo" type="cfMLangString__Type"/>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultPatent_Classification.StartDate(https://w3id.org/cerif/vocab/PatentStatuses#Filed)" minOccurs="0" name="RegistrationDate" type="cfDate__Type">
<xs:annotation>
<xs:documentation>Date on which the application was physically received at the Patent Authority. Also named Filing Date</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultPatent_Classification.StartDate(https://w3id.org/cerif/vocab/PatentStatuses#Granted)" minOccurs="0" name="ApprovalDate" type="cfDate__Type">
<xs:annotation>
<xs:documentation>Date on which the application has been granted by the Patent Office</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultPatent_Classification.StartDate(https://w3id.org/cerif/vocab/PatentStatuses#Published)" minOccurs="0" name="PublicationDate" type="cfDate__Type">
<xs:annotation>
<xs:documentation>Date of making available to the public by printing or similar process of a patent document on which grant has taken place on or before the said date</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultPatent.CountryCode" minOccurs="0" name="CountryCode" type="cfString__Type"/>
<xs:element cflink:link="https://w3id.org/cerif/model#OrganisationUnit_ResultPatent(https://w3id.org/cerif/vocab/OrganisationOutputContributions#PatentIssuer)" maxOccurs="unbounded" minOccurs="0" name="Issuer" type="cfLinkWithDisplayNameToOrgUnit__Type">
<xs:annotation>
<xs:documentation>The issuer of the patent: the patent office</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultPatent.PatentNumber" minOccurs="0" name="PatentNumber" type="cfString__Type"/>
<xs:group ref="PatentIdentifiers__Group"/>
<xs:element cflink:container="ordered" minOccurs="0" name="Inventors">
<xs:annotation>
<xs:documentation>The inventors of this patent</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element cflink:link="https://w3id.org/cerif/model#Person_ResultPatent(https://w3id.org/cerif/vocab/PersonOutputContributions#Inventor)" maxOccurs="unbounded" minOccurs="0" name="Inventor" type="cfLinkWithDisplayNameToPersonWithAffiliations__Type">
<xs:annotation>
<xs:documentation>The inventor: The actual devisor of an invention that is the subject of a patent.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element cflink:container="ordered" minOccurs="0" name="Holders">
<xs:annotation>
<xs:documentation>The holders of this patent</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element cflink:link="https://w3id.org/cerif/model#Person_ResultPatent(https://w3id.org/cerif/vocab/PersonOutputContributions#PatentHolder) https://w3id.org/cerif/model#OrganisationUnit_ResultPatent(https://w3id.org/cerif/vocab/OrganisationOutputContributions#PatentHolder)" maxOccurs="unbounded" minOccurs="0" name="Holder" type="cfLinkWithDisplayNameToPersonOrOrgUnit__Type">
<xs:annotation>
<xs:documentation>The patent rights holder, also known as the patentee or assignee</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultPatent.Abstract" maxOccurs="unbounded" minOccurs="0" name="Abstract" type="cfMLangString__Type"/>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultPatent_Classification" maxOccurs="unbounded" minOccurs="0" name="Subject" type="cfGenericURIClassification__Type">
<xs:annotation>
<xs:documentation>The subject of the patent from a classification</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultPatent.Keywords" maxOccurs="unbounded" minOccurs="0" name="Keyword" type="cfMLangString__Type">
<xs:annotation>
<xs:documentation>A single keyword or key expression. Please repeat to serialize separate keywords or key expressions.</xs:documentation>
</xs:annotation>
</xs:element>
<!-- TODO -->
<xs:element cflink:link="https://w3id.org/cerif/model#Project_ResultPatent(https://w3id.org/cerif/vocab/ProjectOutputRoles#Originator) https://w3id.org/cerif/model#ResultPatent_Funding(https://w3id.org/cerif/vocab/OutputFundingRoles#Originator)" maxOccurs="unbounded" minOccurs="0" name="OriginatesFrom">
<xs:complexType>
<xs:complexContent>
<xs:extension base="cfLink__BaseType">
<xs:sequence>
<xs:element ref="ProjectFunding__SubstitutionGroupHead"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultPatent_ResultPatent(https://w3id.org/cerif/vocab/InterPatentRelations#Predecessor):1" maxOccurs="unbounded" minOccurs="0" name="Predecessor">
<xs:annotation>
<xs:documentation>Patents that precede (i.e., have priority over) this patent</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="cfLink__BaseType">
<xs:choice>
<xs:element ref="Patent"/>
</xs:choice>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultPublication_ResultPatent(https://w3id.org/cerif/vocab/InterOutputRelations#Reference):1 https://w3id.org/cerif/model#ResultProduct_ResultPatent(https://w3id.org/cerif/vocab/InterOutputRelations#Reference):1 https://w3id.org/cerif/model#ResultPatent_ResultPatent(https://w3id.org/cerif/vocab/InterOutputRelations#Reference):1" maxOccurs="unbounded" minOccurs="0" name="References">
<xs:annotation>
<xs:documentation>Result outputs that are referenced by this patent</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="cfLink__BaseType">
<xs:choice>
<xs:element ref="ResearchOutput__SubstitutionGroupHead"/>
</xs:choice>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultPatent_Medium(https://w3id.org/cerif/vocab/MediaRelations#Contents)" minOccurs="0" name="FileLocations">
<xs:annotation>
<xs:documentation>The files that this Patent has as contents.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="cfLink__BaseType">
<xs:choice>
<xs:element maxOccurs="unbounded" minOccurs="0" ref="Medium"/>
</xs:choice>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:group ref="__TheRestGroup"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element cflink:entity="https://w3id.org/cerif/model#ResultProduct" name="Product" substitutionGroup="ResearchOutput__SubstitutionGroupHead">
<xs:annotation>
<xs:documentation>Any result of research other than Publication or Patent.
This includes:
(1) research datasets,
(2) software,
(3) visualisations: still or moving images, including maps and other cartographic material,
(4) audio recordings,
(5) other objects that can be perceived through human senses.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="ResearchOutput__BaseType">
<xs:sequence minOccurs="0">
<xs:element xmlns="https://www.openaire.eu/cerif-profile/vocab/COAR_Product_Types" cflink:link="https://w3id.org/cerif/model#ResultProduct_Classification" ref="Type">
<xs:annotation>
<xs:documentation>The type of the resulting product (other than publication or patent)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultProduct_Classification(http://publications.europa.eu/resource/authority/language)" maxOccurs="unbounded" minOccurs="0" name="Language" type="cfString__Type">
<xs:annotation>
<xs:documentation>The language or languages of the product, if applicable. Please use the IETF language tags as described in the IETF BCP 47 document.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultProduct.Name" maxOccurs="unbounded" minOccurs="0" name="Name" type="cfMLangString__Type"/>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultProduct.VersionInfo" maxOccurs="unbounded" minOccurs="0" name="VersionInfo" type="cfMLangString__Type"/>
<xs:group ref="ProductIdentifiers__Group"/>
<xs:element cflink:container="ordered" minOccurs="0" name="Creators">
<xs:annotation>
<xs:documentation>The creators of this product</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element cflink:link="https://w3id.org/cerif/model#Person_ResultProduct(https://w3id.org/cerif/vocab/PersonOutputContributions#Creator) https://w3id.org/cerif/model#OrganisationUnit_ResultProduct(https://w3id.org/cerif/vocab/OrganisationOutputContributions#Creator)" maxOccurs="unbounded" minOccurs="0" name="Creator" type="cfLinkWithDisplayNameToPersonWithAffiliationsOrOrgUnit__Type"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element cflink:container="ordered" minOccurs="0" name="Publishers">
<xs:annotation>
<xs:documentation>The publisher or publishers of this product</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element cflink:link="https://w3id.org/cerif/model#OrganisationUnit_ResultProduct(https://w3id.org/cerif/vocab/OrganisationOutputContributions#Publisher) https://w3id.org/cerif/model#Person_ResultProduct(https://w3id.org/cerif/vocab/PersonOutputContributions#Publisher)" maxOccurs="unbounded" minOccurs="0" name="Publisher" type="cfLinkWithDisplayNameToPersonOrOrgUnit__Type"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultProduct_Classification" maxOccurs="unbounded" minOccurs="0" name="License" type="cfGenericURIClassification__Type">
<xs:annotation>
<xs:documentation>The license of the product. We recommend using URIs from the SPDX License List (https://spdx.org/licenses/), which includes the licenses commonly used for software and datasets.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultProduct.Description" maxOccurs="unbounded" minOccurs="0" name="Description" type="cfMLangString__Type"/>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultProduct_Classification" maxOccurs="unbounded" minOccurs="0" name="Subject" type="cfGenericURIClassification__Type">
<xs:annotation>
<xs:documentation>The subject of the product from a classification</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:attribute="https://w3id.org/cerif/model#ResultProduct.Keywords" maxOccurs="unbounded" minOccurs="0" name="Keyword" type="cfMLangString__Type">
<xs:annotation>
<xs:documentation>A single keyword or key expression. Please repeat to serialize separate keywords or key expressions.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element cflink:link="https://w3id.org/cerif/model#ResultProduct_ResultProduct(https://w3id.org/cerif/vocab/InterProductRelations#Part):1" minOccurs="0" name="PartOf">
<xs:annotation>
<xs:documentation>Link to the research output of which this product is a part (e.g. a data set collection that contains it)</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>