Project

General

Profile

1
<!DOCTYPE html
2
  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
<html xmlns="http://www.w3.org/1999/xhtml">
4
   <head>
5
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6
      <title>Schema documentation for oaf-datasource-1.0.xsd</title>
7
      <link rel="stylesheet" href="docHtml.css" type="text/css" /><script type="text/javascript">
8
         <!--
9
        var propertiesBoxes= new Array('properties_oaf-datasource-1.0.xsd', 
10
				'properties_datasource', 
11
				'properties_datasource_namespaceprefix', 
12
				'properties_datasource_officialname', 
13
				'properties_datasource_englishname', 
14
				'properties_datasource_websiteurl', 
15
				'properties_datasource_logourl', 
16
				'properties_datasource_contactemail', 
17
				'properties_datasource_datasourcetype', 
18
				'properties_datasource_openairecompatibility', 
19
				'properties_datasource_dateofvalidation', 
20
				'properties_datasource_latitude', 
21
				'properties_datasource_longitude', 
22
				'properties_datasource_description', 
23
				'properties_datasource_subjects', 
24
				'properties_datasource_originalId', 
25
				'properties_datasource_collectedfrom', 
26
				'properties_datasource_pid', 
27
				'properties_datasource_rels');
28
var usedByBoxes= new Array('usedBy_datasource');
29
var sourceBoxes= new Array('source_datasource', 
30
				'source_datasource_namespaceprefix', 
31
				'source_datasource_officialname', 
32
				'source_datasource_englishname', 
33
				'source_datasource_websiteurl', 
34
				'source_datasource_logourl', 
35
				'source_datasource_contactemail', 
36
				'source_datasource_datasourcetype', 
37
				'source_datasource_openairecompatibility', 
38
				'source_datasource_dateofvalidation', 
39
				'source_datasource_latitude', 
40
				'source_datasource_longitude', 
41
				'source_datasource_description', 
42
				'source_datasource_subjects', 
43
				'source_datasource_originalId', 
44
				'source_datasource_collectedfrom', 
45
				'source_datasource_pid', 
46
				'source_datasource_rels');
47
var instanceBoxes= new Array('instance_datasource', 
48
				'instance_datasource_rels');
49
var diagramBoxes= new Array('diagram_datasource', 
50
				'diagram_datasource_namespaceprefix', 
51
				'diagram_datasource_officialname', 
52
				'diagram_datasource_englishname', 
53
				'diagram_datasource_websiteurl', 
54
				'diagram_datasource_logourl', 
55
				'diagram_datasource_contactemail', 
56
				'diagram_datasource_datasourcetype', 
57
				'diagram_datasource_openairecompatibility', 
58
				'diagram_datasource_dateofvalidation', 
59
				'diagram_datasource_latitude', 
60
				'diagram_datasource_longitude', 
61
				'diagram_datasource_description', 
62
				'diagram_datasource_subjects', 
63
				'diagram_datasource_originalId', 
64
				'diagram_datasource_collectedfrom', 
65
				'diagram_datasource_pid', 
66
				'diagram_datasource_rels');
67
var annotationBoxes= new Array('annotations_oaf-datasource-1.0.xsd', 
68
				'annotations_datasource_datasourcetype', 
69
				'annotations_datasource_openairecompatibility', 
70
				'annotations_datasource_dateofvalidation', 
71
				'annotations_datasource_subjects', 
72
				'annotations_datasource_collectedfrom', 
73
				'annotations_datasource_rels');
74
var attributesBoxes= new Array('attributes_datasource_datasourcetype', 
75
				'attributes_datasource_openairecompatibility', 
76
				'attributes_datasource_subjects', 
77
				'attributes_datasource_collectedfrom', 
78
				'attributes_datasource_pid');
79
var modelBoxes= new Array('model_datasource', 
80
				'model_datasource_rels');
81

    
82
      
83
        var button_prefix = 'button_';
84
        
85
        /**
86
        * Returns an element in the current HTML document.
87
        *
88
        * @param elementID Identifier of HTML element
89
        * @return               HTML element object
90
        */
91
        function getElementObject(elementID) {
92
            var elemObj = null;
93
            if (document.getElementById) {
94
                elemObj = document.getElementById(elementID);
95
            }
96
            return elemObj;
97
        }
98
        
99
        /**
100
        * Switches the state of a collapseable box, e.g.
101
        * if it's opened, it'll be closed, and vice versa.
102
        *
103
        * @param boxID Identifier of box
104
        */
105
        function switchState(boxID) {
106
            var boxObj = getElementObject(boxID);
107
            var buttonObj = getElementObject(button_prefix + boxID);
108
            if (boxObj == null || buttonObj == null) {
109
                // Box or button not found
110
            } else if (boxObj.style.display == "none") {
111
                // Box is closed, so open it
112
                openBox(boxObj, buttonObj);
113
            } else if (boxObj.style.display == "block") {
114
                // Box is opened, so close it
115
                closeBox(boxObj, buttonObj);
116
            }
117
        }
118
        
119
        /**
120
        * Opens a collapseable box.
121
        *
122
        * @param boxObj       Collapseable box
123
        * @param buttonObj Button controlling box
124
        */
125
        function openBox(boxObj, buttonObj) {
126
            if (boxObj == null || buttonObj == null) {
127
                // Box or button not found
128
            } else {
129
                // Change 'display' CSS property of box
130
                boxObj.style.display = "block";
131
                
132
                // Change text of button
133
                if (boxObj.style.display == "block") {
134
                    buttonObj.src = "img/btM.gif";
135
                }
136
            }
137
        }
138
        
139
        /**
140
        * Closes a collapseable box.
141
        *
142
        * @param boxObj       Collapseable box
143
        * @param buttonObj Button controlling box
144
        */
145
        function closeBox(boxObj, buttonObj) {
146
            if (boxObj == null || buttonObj == null) {
147
                // Box or button not found
148
            } else {
149
                // Change 'display' CSS property of box
150
                boxObj.style.display = "none";
151
                
152
                // Change text of button
153
                if (boxObj.style.display == "none") {
154
                    buttonObj.src = "img/btP.gif";
155
                }
156
            }
157
        }
158
    
159
       function switchStateForAll(buttonObj, boxList) {
160
            if (buttonObj == null) {
161
                // button not found
162
            } else if (buttonObj.value == "+") {
163
                // Expand all
164
                expandAll(boxList);
165
                buttonObj.value = "-";
166
            } else if (buttonObj.value == "-") {
167
                // Collapse all
168
                collapseAll(boxList);
169
                buttonObj.value = "+";
170
            }
171
        }
172
        
173
        /**
174
        * Closes all boxes in a given list.
175
        *
176
        * @param boxList Array of box IDs
177
        */
178
        function collapseAll(boxList) {
179
            var idx;
180
            for (idx = 0; idx < boxList.length; idx++) {
181
                var boxObj = getElementObject(boxList[idx]);
182
                var buttonObj = getElementObject(button_prefix + boxList[idx]);
183
                closeBox(boxObj, buttonObj);
184
            }
185
        }
186
            
187
        /**
188
        * Open all boxes in a given list.
189
        *
190
        * @param boxList Array of box IDs
191
        */
192
        function expandAll(boxList) {
193
            var idx;
194
            for (idx = 0; idx < boxList.length; idx++) {
195
                var boxObj = getElementObject(boxList[idx]);
196
                var buttonObj = getElementObject(button_prefix + boxList[idx]);
197
                openBox(boxObj, buttonObj);
198
            }
199
        }
200
        
201
        /**
202
         * Update the message presented in the title of the html page.
203
         * - If the documentation was splited by namespace we present something like: "Documentation for namespace 'ns'"
204
         * - If the documentation was splited by location we present somehing like: "Documentation for 'Schema.xsd'"
205
         * - If no split we always present: "Documentation for 'MainSchema.xsd'"
206
         */
207
        function updatePageTitle(message) {
208
            top.document.title = message;
209
        }
210
        
211
          
212
                    
213
         /**
214
          * Finds an HTML element by its ID and makes it floatable over the normal content.
215
          *
216
          * @param x_displacement The difference in pixels to the right side of the window from 
217
          *           the left side of the element.
218
          * @param y_displacement The difference in pixels to the right side of the window from 
219
          *           the top of the element.          
220
          */
221
         function findAndFloat(id, x_displacement, y_displacement){
222

    
223
            var element = getElementObject(id);            
224
            
225
            window[id + "_obj"] = element;
226
            
227
            if(document.layers) {
228
               element.style = element;
229
            }
230
            
231
            element.current_y = y_displacement;      
232
            element.first_time = true;
233
         
234
            element.floatElement = function(){
235
               // It may be closed by an user action.
236
                
237
               // Target X and Y coordinates.
238
               var x, y;
239
               
240
               var myWidth = 0, myHeight = 0;
241
               if( typeof( window.innerWidth ) == 'number' ) {
242
                  //Non-IE
243
                  myWidth = window.innerWidth;
244
                  myHeight = window.innerHeight;
245
               } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
246
                  //IE 6+ in 'standards compliant mode'
247
                  myWidth = document.documentElement.clientWidth;
248
                  myHeight = document.documentElement.clientHeight;
249
               } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
250
                  //IE 4 compatible
251
                  myWidth = document.body.clientWidth;
252
                  myHeight = document.body.clientHeight;
253
               }
254
               
255
               
256
               x = myWidth - x_displacement;
257
               
258
               var ns = (navigator.appName.indexOf("Netscape") != -1);               
259
               y = ns ? pageYOffset : document.documentElement && document.documentElement.scrollTop ? 
260
                  document.documentElement.scrollTop : document.body.scrollTop;               
261
               y = y + y_displacement;               
262
               
263
               // The current y is the current coordinate of the floating element.
264
               // This should be at the limit the y target coordinate.
265
               this.current_y += (y - this.current_y)/1.25;
266
               
267
               // Add the pixels constant after the values
268
               // and move the element.
269
               var px = document.layers ? "" : "px";
270
               this.style.left =  x + px;
271
               this.style.top =  this.current_y + px;
272
                              
273
               setTimeout(this.id + "_obj.floatElement()", 100);
274
            }
275
            
276
            element.floatElement();
277
            return element;
278
          }
279

    
280
         /**
281
          * Finds an HTML element by its ID and makes it floatable over the normal content.
282
          *
283
          * @param x_displacement The difference in pixels to the right side of the window from 
284
          *           the left side of the element.
285
          * @param y_displacement The difference in pixels to the right side of the window from 
286
          *           the top of the element.          
287
          */
288
         function selectTOCGroupBy(id, isChunked, indexFileLocation, indexFileNamespace, indexFileComponent){
289

    
290
            if (!isChunked) {
291
             var selectIds = new Array('toc_group_by_namespace', 'toc_group_by_location', 'toc_group_by_component_type');
292
             // Make all the tabs invisible.
293
               for (i = 0; i < 3; i++){
294
                  var tab = getElementObject(selectIds[i]);
295
                  tab.style.display = 'none';
296
               }
297
               var selTab = getElementObject(id);
298
               selTab.style.display = 'block';
299
            } else {
300
             if (id == 'toc_group_by_namespace') {
301
               parent.indexFrame.location = indexFileNamespace;
302
             } else  if (id == 'toc_group_by_location') {
303
               parent.indexFrame.location = indexFileLocation;
304
             } else  if (id == 'toc_group_by_component_type') {
305
              parent.indexFrame.location = indexFileComponent;
306
             }
307
            }
308
         }
309
          
310

    
311
    
312
                    //--></script></head>
313
   <body>
314
      <div id="global_controls" class="globalControls" style="position:absolute;right:0;">
315
         <table class="rt">
316
            <tr>
317
               <td class="rt_cornerTopLeft"></td>
318
               <td class="rt_lineTop"></td>
319
               <td class="rt_cornerTopRight"></td>
320
            </tr>
321
            <tr>
322
               <td class="rt_lineLeft"></td>
323
               <td class="rt_content">
324
                  <h3>Showing:</h3>
325
                  <table>
326
                     <tr>
327
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, annotationBoxes);" class="control" /></span><span class="globalControlName">Annotations</span></td>
328
                     </tr>
329
                     <tr>
330
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, attributesBoxes);" class="control" /></span><span class="globalControlName">Attributes </span></td>
331
                     </tr>
332
                     <tr>
333
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, diagramBoxes);" class="control" /></span><span class="globalControlName">Diagrams</span></td>
334
                     </tr>
335
                     <tr>
336
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, instanceBoxes);" class="control" /></span><span class="globalControlName">Instances</span></td>
337
                     </tr>
338
                     <tr>
339
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, modelBoxes);" class="control" /></span><span class="globalControlName">Model </span></td>
340
                     </tr>
341
                     <tr>
342
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, propertiesBoxes);" class="control" /></span><span class="globalControlName">Properties </span></td>
343
                     </tr>
344
                     <tr>
345
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, sourceBoxes);" class="control" /></span><span class="globalControlName">Source</span></td>
346
                     </tr>
347
                     <tr>
348
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, usedByBoxes);" class="control" /></span><span class="globalControlName">Used by </span></td>
349
                     </tr>
350
                  </table>
351
                  <div align="right"><span><input type="button" onclick="getElementObject('global_controls').style.display = 'none';" value="Close" /></span></div>
352
               </td>
353
               <td class="rt_lineRight"></td>
354
            </tr>
355
            <tr>
356
               <td class="rt_cornerBottomLeft"></td>
357
               <td class="rt_lineBottom"></td>
358
               <td class="rt_cornerBottomRight"></td>
359
            </tr>
360
         </table>
361
      </div><a id="oaf-datasource-1.0.xsd"></a><div class="componentTitle">Included schema <span class="qname">oaf-datasource-1.0.xsd</span></div>
362
      <table class="rt">
363
         <tr>
364
            <td class="rt_cornerTopLeft"></td>
365
            <td class="rt_lineTop"></td>
366
            <td class="rt_cornerTopRight"></td>
367
         </tr>
368
         <tr>
369
            <td class="rt_lineLeft"></td>
370
            <td class="rt_content">
371
               <table class="component">
372
                  <tbody>
373
                     <tr>
374
                        <td class="firstColumn"><b>Namespace</b></td>
375
                        <td>http://namespace.openaire.eu/oaf</td>
376
                     </tr>
377
                     <tr>
378
                        <td class="firstColumn">
379
                           <div class="floatLeft"><b>Annotations</b></div>
380
                           <div class="floatRight"><input id="button_annotations_oaf-datasource-1.0.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_oaf-datasource-1.0.xsd');" class="control" /></div>
381
                        </td>
382
                        <td>
383
                           <div id="annotations_oaf-datasource-1.0.xsd" style="display:block">
384
                              <div class="annotation">
385
                                 <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
386
                                    <tr>
387
                                       <td width="100%"><pre><span class="tT">This schema describes elements and properties of OpenAIRE datasources: https://issue.openaire.research-infrastructures.eu/projects/openaire2020-wiki/wiki/Core_entity_datasource</span></pre></td>
388
                                    </tr>
389
                                 </table>
390
                              </div>
391
                           </div>
392
                        </td>
393
                     </tr>
394
                     <tr>
395
                        <td class="firstColumn">
396
                           <div class="floatLeft"><b>Properties</b></div>
397
                           <div class="floatRight"><input id="button_properties_oaf-datasource-1.0.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_oaf-datasource-1.0.xsd');" class="control" /></div>
398
                        </td>
399
                        <td>
400
                           <div id="properties_oaf-datasource-1.0.xsd" style="display:block">
401
                              <table class="propertiesTable">
402
                                 <tr>
403
                                    <td class="firstColumn" style="white-space: nowrap;">attribute form default</td>
404
                                    <td><b>unqualified</b></td>
405
                                 </tr>
406
                                 <tr>
407
                                    <td class="firstColumn" style="white-space: nowrap;">element form default</td>
408
                                    <td><b>qualified</b></td>
409
                                 </tr>
410
                              </table>
411
                           </div>
412
                        </td>
413
                     </tr>
414
                     <tr>
415
                        <td class="firstColumn"><b>Schema location</b></td>
416
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
417
                     </tr>
418
                  </tbody>
419
               </table>
420
            </td>
421
            <td class="rt_lineRight"></td>
422
         </tr>
423
         <tr>
424
            <td class="rt_cornerBottomLeft"></td>
425
            <td class="rt_lineBottom"></td>
426
            <td class="rt_cornerBottomRight"></td>
427
         </tr>
428
      </table><a id="datasource"></a><div class="componentTitle">Element <span class="qname">datasource</span></div>
429
      <table class="rt">
430
         <tr>
431
            <td class="rt_cornerTopLeft"></td>
432
            <td class="rt_lineTop"></td>
433
            <td class="rt_cornerTopRight"></td>
434
         </tr>
435
         <tr>
436
            <td class="rt_lineLeft"></td>
437
            <td class="rt_content">
438
               <table class="component">
439
                  <tbody>
440
                     <tr>
441
                        <td class="firstColumn"><b>Namespace</b></td>
442
                        <td>http://namespace.openaire.eu/oaf</td>
443
                     </tr>
444
                     <tr>
445
                        <td class="firstColumn">
446
                           <div class="floatLeft"><b>Diagram</b></div>
447
                           <div class="floatRight"><input id="button_diagram_datasource" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource');" class="control" /></div>
448
                        </td>
449
                        <td class="diagram">
450
                           <div id="diagram_datasource" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_datasource.jpeg" usemap="#oaf-datasource-1_0_xsd_Element_datasource" /><map name="oaf-datasource-1_0_xsd_Element_datasource" id="oaf-datasource-1_0_xsd_Element_datasource">
451
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_namespaceprefix" href="oaf-datasource-1_0_xsd.html#datasource_namespaceprefix" coords="211,2,334,26" />
452
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_officialname" href="oaf-datasource-1_0_xsd.html#datasource_officialname" coords="211,36,307,60" />
453
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_englishname" href="oaf-datasource-1_0_xsd.html#datasource_englishname" coords="211,70,310,94" />
454
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_websiteurl" href="oaf-datasource-1_0_xsd.html#datasource_websiteurl" coords="211,104,297,128" />
455
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_logourl" href="oaf-datasource-1_0_xsd.html#datasource_logourl" coords="211,138,281,162" />
456
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_contactemail" href="oaf-datasource-1_0_xsd.html#datasource_contactemail" coords="211,172,310,196" />
457
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_datasourcetype" href="oaf-datasource-1_0_xsd.html#datasource_datasourcetype" coords="211,206,325,230" />
458
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_openairecompatibility" href="oaf-datasource-1_0_xsd.html#datasource_openairecompatibility" coords="211,296,358,320" />
459
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_dateofvalidation" href="oaf-datasource-1_0_xsd.html#datasource_dateofvalidation" coords="211,373,328,397" />
460
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_latitude" href="oaf-datasource-1_0_xsd.html#datasource_latitude" coords="211,450,282,474" />
461
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_longitude" href="oaf-datasource-1_0_xsd.html#datasource_longitude" coords="211,484,293,508" />
462
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_description" href="oaf-datasource-1_0_xsd.html#datasource_description" coords="211,518,303,542" />
463
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_subjects" href="oaf-datasource-1_0_xsd.html#datasource_subjects" coords="211,552,287,576" />
464
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_originalId" href="oaf-datasource-1_0_xsd.html#datasource_originalId" coords="211,655,293,679" />
465
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_collectedfrom" href="oaf-datasource-1_0_xsd.html#datasource_collectedfrom" coords="211,689,316,713" />
466
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_pid" href="oaf-datasource-1_0_xsd.html#datasource_pid" coords="211,766,262,790" />
467
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_rels" href="oaf-datasource-1_0_xsd.html#datasource_rels" coords="211,800,262,824" /></map></div>
468
                        </td>
469
                     </tr>
470
                     <tr>
471
                        <td class="firstColumn">
472
                           <div class="floatLeft"><b>Properties</b></div>
473
                           <div class="floatRight"><input id="button_properties_datasource" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource');" class="control" /></div>
474
                        </td>
475
                        <td>
476
                           <div id="properties_datasource" style="display:block">
477
                              <table class="propertiesTable">
478
                                 <tr>
479
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
480
                                    <td><b>complex</b></td>
481
                                 </tr>
482
                              </table>
483
                           </div>
484
                        </td>
485
                     </tr>
486
                     <tr>
487
                        <td class="firstColumn">
488
                           <div class="floatLeft"><b>Used by</b></div>
489
                           <div class="floatRight"><input id="button_usedBy_datasource" type="image" src="img/btM.gif" value="-" onclick="switchState('usedBy_datasource');" class="control" /></div>
490
                        </td>
491
                        <td>
492
                           <div id="usedBy_datasource" style="display:block">
493
                              <table class="usedByTable">
494
                                 <tr>
495
                                    <td class="firstColumn">Element </td>
496
                                    <td><b><a href="oaf-1_0_xsd.html#entity" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-1.0.xsd')">entity</a></b></td>
497
                                 </tr>
498
                              </table>
499
                           </div>
500
                        </td>
501
                     </tr>
502
                     <tr>
503
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_datasource" type="image" src="img/btM.gif" value="-" onclick="switchState('model_datasource');" class="control" /></div>
504
                        </td>
505
                        <td>
506
                           <div id="model_datasource" style="display:block"><b><a href="oaf-datasource-1_0_xsd.html#datasource_namespaceprefix" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">namespaceprefix</a></b> | <b><a href="oaf-datasource-1_0_xsd.html#datasource_officialname" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">officialname</a></b> | <b><a href="oaf-datasource-1_0_xsd.html#datasource_englishname" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">englishname</a></b> | <b><a href="oaf-datasource-1_0_xsd.html#datasource_websiteurl" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">websiteurl</a></b> | <b><a href="oaf-datasource-1_0_xsd.html#datasource_logourl" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">logourl</a></b> | <b><a href="oaf-datasource-1_0_xsd.html#datasource_contactemail" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">contactemail</a></b> | <b><a href="oaf-datasource-1_0_xsd.html#datasource_datasourcetype" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasourcetype</a></b> | <b><a href="oaf-datasource-1_0_xsd.html#datasource_openairecompatibility" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">openairecompatibility</a></b> | <b><a href="oaf-datasource-1_0_xsd.html#datasource_dateofvalidation" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">dateofvalidation</a></b> | <b><a href="oaf-datasource-1_0_xsd.html#datasource_latitude" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">latitude</a></b> | <b><a href="oaf-datasource-1_0_xsd.html#datasource_longitude" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">longitude</a></b> | <b><a href="oaf-datasource-1_0_xsd.html#datasource_description" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">description</a></b> | <b><a href="oaf-datasource-1_0_xsd.html#datasource_subjects" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">subjects</a></b> | <b><a href="oaf-datasource-1_0_xsd.html#datasource_originalId" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">originalId</a></b> | <b><a href="oaf-datasource-1_0_xsd.html#datasource_collectedfrom" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">collectedfrom</a></b> | <b><a href="oaf-datasource-1_0_xsd.html#datasource_pid" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">pid</a></b> | <b><a href="oaf-datasource-1_0_xsd.html#datasource_rels" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">rels</a></b></div>
507
                        </td>
508
                     </tr>
509
                     <tr>
510
                        <td class="firstColumn"><b>Children</b></td>
511
                        <td><b><a href="oaf-datasource-1_0_xsd.html#datasource_collectedfrom" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">collectedfrom</a></b>, <b><a href="oaf-datasource-1_0_xsd.html#datasource_contactemail" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">contactemail</a></b>, <b><a href="oaf-datasource-1_0_xsd.html#datasource_datasourcetype" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasourcetype</a></b>, <b><a href="oaf-datasource-1_0_xsd.html#datasource_dateofvalidation" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">dateofvalidation</a></b>, <b><a href="oaf-datasource-1_0_xsd.html#datasource_description" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">description</a></b>, <b><a href="oaf-datasource-1_0_xsd.html#datasource_englishname" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">englishname</a></b>, <b><a href="oaf-datasource-1_0_xsd.html#datasource_latitude" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">latitude</a></b>, <b><a href="oaf-datasource-1_0_xsd.html#datasource_logourl" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">logourl</a></b>, <b><a href="oaf-datasource-1_0_xsd.html#datasource_longitude" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">longitude</a></b>, <b><a href="oaf-datasource-1_0_xsd.html#datasource_namespaceprefix" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">namespaceprefix</a></b>, <b><a href="oaf-datasource-1_0_xsd.html#datasource_officialname" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">officialname</a></b>, <b><a href="oaf-datasource-1_0_xsd.html#datasource_openairecompatibility" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">openairecompatibility</a></b>, <b><a href="oaf-datasource-1_0_xsd.html#datasource_originalId" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">originalId</a></b>, <b><a href="oaf-datasource-1_0_xsd.html#datasource_pid" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">pid</a></b>, <b><a href="oaf-datasource-1_0_xsd.html#datasource_rels" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">rels</a></b>, <b><a href="oaf-datasource-1_0_xsd.html#datasource_subjects" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">subjects</a></b>, <b><a href="oaf-datasource-1_0_xsd.html#datasource_websiteurl" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">websiteurl</a></b></td>
512
                     </tr>
513
                     <tr>
514
                        <td class="firstColumn">
515
                           <div class="floatLeft"><b>Instance</b></div>
516
                           <div class="floatRight"><input id="button_instance_datasource" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_datasource');" class="control" /></div>
517
                        </td>
518
                        <td>
519
                           <div id="instance_datasource" style="display:block">
520
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
521
                                 <tr>
522
                                    <td width="100%"><pre><span class="tEl">&lt;datasource</span><span class="tT"> </span><span class="tAN">xmlns=</span><span class="tAV">"http://namespace.openaire.eu/oaf"</span><span class="tEl">&gt;</span><span class="tI">
523
  </span><span class="tEl">&lt;namespaceprefix</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/namespaceprefix&gt;</span><span class="tI">
524
  </span><span class="tEl">&lt;officialname</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/officialname&gt;</span><span class="tI">
525
  </span><span class="tEl">&lt;englishname</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/englishname&gt;</span><span class="tI">
526
  </span><span class="tEl">&lt;websiteurl</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/websiteurl&gt;</span><span class="tI">
527
  </span><span class="tEl">&lt;logourl</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/logourl&gt;</span><span class="tI">
528
  </span><span class="tEl">&lt;contactemail</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/contactemail&gt;</span><span class="tI">
529
  </span><span class="tEl">&lt;datasourcetype</span><span class="tT"> </span><span class="tAN">classid=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">classname=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">schemeid=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">schemename=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/datasourcetype&gt;</span><span class="tI">
530
  </span><span class="tEl">&lt;openairecompatibility</span><span class="tT"> </span><span class="tAN">classid=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">classname=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">schemeid=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">schemename=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/openairecompatibility&gt;</span><span class="tI">
531
  </span><span class="tEl">&lt;dateofvalidation</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/dateofvalidation&gt;</span><span class="tI">
532
  </span><span class="tEl">&lt;latitude</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/latitude&gt;</span><span class="tI">
533
  </span><span class="tEl">&lt;longitude</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/longitude&gt;</span><span class="tI">
534
  </span><span class="tEl">&lt;description</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/description&gt;</span><span class="tI">
535
  </span><span class="tEl">&lt;subjects</span><span class="tT"> </span><span class="tAN">schemename=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">classid=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">trust=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">classname=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">inferenceprovenance=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">inferred=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">schemeid=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/subjects&gt;</span><span class="tI">
536
  </span><span class="tEl">&lt;originalId</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/originalId&gt;</span><span class="tI">
537
  </span><span class="tEl">&lt;collectedfrom</span><span class="tT"> </span><span class="tAN">classid=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">classname=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">inferenceprovenance=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">inferred=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">name=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">schemeid=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">schemename=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">trust=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/collectedfrom&gt;</span><span class="tI">
538
  </span><span class="tEl">&lt;pid</span><span class="tT"> </span><span class="tAN">schemename=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">classid=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">trust=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">classname=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">inferenceprovenance=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">inferred=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">schemeid=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/pid&gt;</span><span class="tI">
539
  </span><span class="tEl">&lt;rels</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/rels&gt;</span><span class="tI">
540
</span><span class="tEl">&lt;/datasource&gt;</span></pre></td>
541
                                 </tr>
542
                              </table>
543
                           </div>
544
                        </td>
545
                     </tr>
546
                     <tr>
547
                        <td class="firstColumn">
548
                           <div class="floatLeft"><b>Source</b></div>
549
                           <div class="floatRight"><input id="button_source_datasource" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource');" class="control" /></div>
550
                        </td>
551
                        <td>
552
                           <div id="source_datasource" style="display:block">
553
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
554
                                 <tr>
555
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"datasource"</span><span class="tEl">&gt;</span><span class="tI">
556
  </span><span class="tEl">&lt;xs:complexType</span><span class="tEl">&gt;</span><span class="tI">
557
    </span><span class="tEl">&lt;xs:choice</span><span class="tAN"> maxOccurs=</span><span class="tAV">"unbounded"</span><span class="tEl">&gt;</span><span class="tI">
558
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"namespaceprefix"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span><span class="tI">
559
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"officialname"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span><span class="tI">
560
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"englishname"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span><span class="tI">
561
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"websiteurl"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span><span class="tI">
562
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"logourl"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span><span class="tI">
563
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"contactemail"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span><span class="tI">
564
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"datasourcetype"</span><span class="tAN"> type=</span><span class="tAV">"qualifierType"</span><span class="tEl">&gt;</span><span class="tI">
565
        </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
566
          </span><span class="tEl">&lt;xs:documentation</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">For allowed values check terms in:http://api.openaire.eu/vocabularies/dnet:datasource_typologies</span><span class="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
567
        </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
568
      </span><span class="tEl">&lt;/xs:element&gt;</span><span class="tI">
569
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"openairecompatibility"</span><span class="tAN"> type=</span><span class="tAV">"qualifierType"</span><span class="tEl">&gt;</span><span class="tI">
570
        </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
571
          </span><span class="tEl">&lt;xs:documentation</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">Level of compatibility of this datasource with regards to the guidelines.</span><span class="tI">
572
            </span><span class="tEl">&lt;p</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">For allowed values check: http://api.openaire.eu/vocabularies/dnet:datasourceCompatibilityLevel</span><span class="tEl">&lt;/p&gt;</span><span class="tI">
573
          </span><span class="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
574
        </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
575
      </span><span class="tEl">&lt;/xs:element&gt;</span><span class="tI">
576
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"dateofvalidation"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">&gt;</span><span class="tI">
577
        </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
578
          </span><span class="tEl">&lt;xs:documentation</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">When this datasource has been validated by the OpenAire Validator.</span><span class="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
579
        </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
580
      </span><span class="tEl">&lt;/xs:element&gt;</span><span class="tI">
581
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"latitude"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span><span class="tI">
582
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"longitude"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span><span class="tI">
583
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"description"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span><span class="tI">
584
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"subjects"</span><span class="tAN"> type=</span><span class="tAV">"structuredPropertyElementType"</span><span class="tEl">&gt;</span><span class="tI">
585
        </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
586
          </span><span class="tEl">&lt;xs:documentation</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">Subjects and keywords.</span><span class="tI">
587
            </span><span class="tEl">&lt;p</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">For allowed values check: http://api.openaire.eu/vocabularies/dnet:result_subjects</span><span class="tEl">&lt;/p&gt;</span><span class="tI">
588
          </span><span class="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
589
        </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
590
      </span><span class="tEl">&lt;/xs:element&gt;</span><span class="tI">
591
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"originalId"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span><span class="tI">
592
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"collectedfrom"</span><span class="tAN"> type=</span><span class="tAV">"namedIdElementType"</span><span class="tEl">&gt;</span><span class="tI">
593
        </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
594
          </span><span class="tEl">&lt;xs:documentation</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">Identifier and name of the datasource from which this datasource has been collected from.</span><span class="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
595
        </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
596
      </span><span class="tEl">&lt;/xs:element&gt;</span><span class="tI">
597
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"pid"</span><span class="tAN"> type=</span><span class="tAV">"structuredPropertyElementType"</span><span class="tEl">/&gt;</span><span class="tI">
598
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"rels"</span><span class="tAN"> type=</span><span class="tAV">"relsType"</span><span class="tEl">&gt;</span><span class="tI">
599
        </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
600
          </span><span class="tEl">&lt;xs:documentation</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">Relationships to other entities.</span><span class="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
601
        </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
602
      </span><span class="tEl">&lt;/xs:element&gt;</span><span class="tI">
603
    </span><span class="tEl">&lt;/xs:choice&gt;</span><span class="tI">
604
  </span><span class="tEl">&lt;/xs:complexType&gt;</span><span class="tI">
605
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
606
                                 </tr>
607
                              </table>
608
                           </div>
609
                        </td>
610
                     </tr>
611
                     <tr>
612
                        <td class="firstColumn"><b>Schema location</b></td>
613
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
614
                     </tr>
615
                  </tbody>
616
               </table>
617
            </td>
618
            <td class="rt_lineRight"></td>
619
         </tr>
620
         <tr>
621
            <td class="rt_cornerBottomLeft"></td>
622
            <td class="rt_lineBottom"></td>
623
            <td class="rt_cornerBottomRight"></td>
624
         </tr>
625
      </table><a id="datasource_namespaceprefix"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-datasource-1_0_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource</a></b> / namespaceprefix</span></div>
626
      <table class="rt">
627
         <tr>
628
            <td class="rt_cornerTopLeft"></td>
629
            <td class="rt_lineTop"></td>
630
            <td class="rt_cornerTopRight"></td>
631
         </tr>
632
         <tr>
633
            <td class="rt_lineLeft"></td>
634
            <td class="rt_content">
635
               <table class="component">
636
                  <tbody>
637
                     <tr>
638
                        <td class="firstColumn"><b>Namespace</b></td>
639
                        <td>http://namespace.openaire.eu/oaf</td>
640
                     </tr>
641
                     <tr>
642
                        <td class="firstColumn">
643
                           <div class="floatLeft"><b>Diagram</b></div>
644
                           <div class="floatRight"><input id="button_diagram_datasource_namespaceprefix" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_namespaceprefix');" class="control" /></div>
645
                        </td>
646
                        <td class="diagram">
647
                           <div id="diagram_datasource_namespaceprefix" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_namespaceprefix.jpeg" /></div>
648
                        </td>
649
                     </tr>
650
                     <tr>
651
                        <td class="firstColumn"><b>Type</b></td>
652
                        <td><b>xs:string</b></td>
653
                     </tr>
654
                     <tr>
655
                        <td class="firstColumn">
656
                           <div class="floatLeft"><b>Properties</b></div>
657
                           <div class="floatRight"><input id="button_properties_datasource_namespaceprefix" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_namespaceprefix');" class="control" /></div>
658
                        </td>
659
                        <td>
660
                           <div id="properties_datasource_namespaceprefix" style="display:block">
661
                              <table class="propertiesTable">
662
                                 <tr>
663
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
664
                                    <td><b>simple</b></td>
665
                                 </tr>
666
                              </table>
667
                           </div>
668
                        </td>
669
                     </tr>
670
                     <tr>
671
                        <td class="firstColumn">
672
                           <div class="floatLeft"><b>Source</b></div>
673
                           <div class="floatRight"><input id="button_source_datasource_namespaceprefix" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_namespaceprefix');" class="control" /></div>
674
                        </td>
675
                        <td>
676
                           <div id="source_datasource_namespaceprefix" style="display:block">
677
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
678
                                 <tr>
679
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"namespaceprefix"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span></pre></td>
680
                                 </tr>
681
                              </table>
682
                           </div>
683
                        </td>
684
                     </tr>
685
                     <tr>
686
                        <td class="firstColumn"><b>Schema location</b></td>
687
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
688
                     </tr>
689
                  </tbody>
690
               </table>
691
            </td>
692
            <td class="rt_lineRight"></td>
693
         </tr>
694
         <tr>
695
            <td class="rt_cornerBottomLeft"></td>
696
            <td class="rt_lineBottom"></td>
697
            <td class="rt_cornerBottomRight"></td>
698
         </tr>
699
      </table><a id="datasource_officialname"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-datasource-1_0_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource</a></b> / officialname</span></div>
700
      <table class="rt">
701
         <tr>
702
            <td class="rt_cornerTopLeft"></td>
703
            <td class="rt_lineTop"></td>
704
            <td class="rt_cornerTopRight"></td>
705
         </tr>
706
         <tr>
707
            <td class="rt_lineLeft"></td>
708
            <td class="rt_content">
709
               <table class="component">
710
                  <tbody>
711
                     <tr>
712
                        <td class="firstColumn"><b>Namespace</b></td>
713
                        <td>http://namespace.openaire.eu/oaf</td>
714
                     </tr>
715
                     <tr>
716
                        <td class="firstColumn">
717
                           <div class="floatLeft"><b>Diagram</b></div>
718
                           <div class="floatRight"><input id="button_diagram_datasource_officialname" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_officialname');" class="control" /></div>
719
                        </td>
720
                        <td class="diagram">
721
                           <div id="diagram_datasource_officialname" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_officialname.jpeg" /></div>
722
                        </td>
723
                     </tr>
724
                     <tr>
725
                        <td class="firstColumn"><b>Type</b></td>
726
                        <td><b>xs:string</b></td>
727
                     </tr>
728
                     <tr>
729
                        <td class="firstColumn">
730
                           <div class="floatLeft"><b>Properties</b></div>
731
                           <div class="floatRight"><input id="button_properties_datasource_officialname" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_officialname');" class="control" /></div>
732
                        </td>
733
                        <td>
734
                           <div id="properties_datasource_officialname" style="display:block">
735
                              <table class="propertiesTable">
736
                                 <tr>
737
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
738
                                    <td><b>simple</b></td>
739
                                 </tr>
740
                              </table>
741
                           </div>
742
                        </td>
743
                     </tr>
744
                     <tr>
745
                        <td class="firstColumn">
746
                           <div class="floatLeft"><b>Source</b></div>
747
                           <div class="floatRight"><input id="button_source_datasource_officialname" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_officialname');" class="control" /></div>
748
                        </td>
749
                        <td>
750
                           <div id="source_datasource_officialname" style="display:block">
751
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
752
                                 <tr>
753
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"officialname"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span></pre></td>
754
                                 </tr>
755
                              </table>
756
                           </div>
757
                        </td>
758
                     </tr>
759
                     <tr>
760
                        <td class="firstColumn"><b>Schema location</b></td>
761
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
762
                     </tr>
763
                  </tbody>
764
               </table>
765
            </td>
766
            <td class="rt_lineRight"></td>
767
         </tr>
768
         <tr>
769
            <td class="rt_cornerBottomLeft"></td>
770
            <td class="rt_lineBottom"></td>
771
            <td class="rt_cornerBottomRight"></td>
772
         </tr>
773
      </table><a id="datasource_englishname"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-datasource-1_0_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource</a></b> / englishname</span></div>
774
      <table class="rt">
775
         <tr>
776
            <td class="rt_cornerTopLeft"></td>
777
            <td class="rt_lineTop"></td>
778
            <td class="rt_cornerTopRight"></td>
779
         </tr>
780
         <tr>
781
            <td class="rt_lineLeft"></td>
782
            <td class="rt_content">
783
               <table class="component">
784
                  <tbody>
785
                     <tr>
786
                        <td class="firstColumn"><b>Namespace</b></td>
787
                        <td>http://namespace.openaire.eu/oaf</td>
788
                     </tr>
789
                     <tr>
790
                        <td class="firstColumn">
791
                           <div class="floatLeft"><b>Diagram</b></div>
792
                           <div class="floatRight"><input id="button_diagram_datasource_englishname" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_englishname');" class="control" /></div>
793
                        </td>
794
                        <td class="diagram">
795
                           <div id="diagram_datasource_englishname" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_englishname.jpeg" /></div>
796
                        </td>
797
                     </tr>
798
                     <tr>
799
                        <td class="firstColumn"><b>Type</b></td>
800
                        <td><b>xs:string</b></td>
801
                     </tr>
802
                     <tr>
803
                        <td class="firstColumn">
804
                           <div class="floatLeft"><b>Properties</b></div>
805
                           <div class="floatRight"><input id="button_properties_datasource_englishname" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_englishname');" class="control" /></div>
806
                        </td>
807
                        <td>
808
                           <div id="properties_datasource_englishname" style="display:block">
809
                              <table class="propertiesTable">
810
                                 <tr>
811
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
812
                                    <td><b>simple</b></td>
813
                                 </tr>
814
                              </table>
815
                           </div>
816
                        </td>
817
                     </tr>
818
                     <tr>
819
                        <td class="firstColumn">
820
                           <div class="floatLeft"><b>Source</b></div>
821
                           <div class="floatRight"><input id="button_source_datasource_englishname" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_englishname');" class="control" /></div>
822
                        </td>
823
                        <td>
824
                           <div id="source_datasource_englishname" style="display:block">
825
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
826
                                 <tr>
827
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"englishname"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span></pre></td>
828
                                 </tr>
829
                              </table>
830
                           </div>
831
                        </td>
832
                     </tr>
833
                     <tr>
834
                        <td class="firstColumn"><b>Schema location</b></td>
835
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
836
                     </tr>
837
                  </tbody>
838
               </table>
839
            </td>
840
            <td class="rt_lineRight"></td>
841
         </tr>
842
         <tr>
843
            <td class="rt_cornerBottomLeft"></td>
844
            <td class="rt_lineBottom"></td>
845
            <td class="rt_cornerBottomRight"></td>
846
         </tr>
847
      </table><a id="datasource_websiteurl"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-datasource-1_0_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource</a></b> / websiteurl</span></div>
848
      <table class="rt">
849
         <tr>
850
            <td class="rt_cornerTopLeft"></td>
851
            <td class="rt_lineTop"></td>
852
            <td class="rt_cornerTopRight"></td>
853
         </tr>
854
         <tr>
855
            <td class="rt_lineLeft"></td>
856
            <td class="rt_content">
857
               <table class="component">
858
                  <tbody>
859
                     <tr>
860
                        <td class="firstColumn"><b>Namespace</b></td>
861
                        <td>http://namespace.openaire.eu/oaf</td>
862
                     </tr>
863
                     <tr>
864
                        <td class="firstColumn">
865
                           <div class="floatLeft"><b>Diagram</b></div>
866
                           <div class="floatRight"><input id="button_diagram_datasource_websiteurl" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_websiteurl');" class="control" /></div>
867
                        </td>
868
                        <td class="diagram">
869
                           <div id="diagram_datasource_websiteurl" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_websiteurl.jpeg" /></div>
870
                        </td>
871
                     </tr>
872
                     <tr>
873
                        <td class="firstColumn"><b>Type</b></td>
874
                        <td><b>xs:string</b></td>
875
                     </tr>
876
                     <tr>
877
                        <td class="firstColumn">
878
                           <div class="floatLeft"><b>Properties</b></div>
879
                           <div class="floatRight"><input id="button_properties_datasource_websiteurl" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_websiteurl');" class="control" /></div>
880
                        </td>
881
                        <td>
882
                           <div id="properties_datasource_websiteurl" style="display:block">
883
                              <table class="propertiesTable">
884
                                 <tr>
885
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
886
                                    <td><b>simple</b></td>
887
                                 </tr>
888
                              </table>
889
                           </div>
890
                        </td>
891
                     </tr>
892
                     <tr>
893
                        <td class="firstColumn">
894
                           <div class="floatLeft"><b>Source</b></div>
895
                           <div class="floatRight"><input id="button_source_datasource_websiteurl" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_websiteurl');" class="control" /></div>
896
                        </td>
897
                        <td>
898
                           <div id="source_datasource_websiteurl" style="display:block">
899
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
900
                                 <tr>
901
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"websiteurl"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span></pre></td>
902
                                 </tr>
903
                              </table>
904
                           </div>
905
                        </td>
906
                     </tr>
907
                     <tr>
908
                        <td class="firstColumn"><b>Schema location</b></td>
909
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
910
                     </tr>
911
                  </tbody>
912
               </table>
913
            </td>
914
            <td class="rt_lineRight"></td>
915
         </tr>
916
         <tr>
917
            <td class="rt_cornerBottomLeft"></td>
918
            <td class="rt_lineBottom"></td>
919
            <td class="rt_cornerBottomRight"></td>
920
         </tr>
921
      </table><a id="datasource_logourl"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-datasource-1_0_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource</a></b> / logourl</span></div>
922
      <table class="rt">
923
         <tr>
924
            <td class="rt_cornerTopLeft"></td>
925
            <td class="rt_lineTop"></td>
926
            <td class="rt_cornerTopRight"></td>
927
         </tr>
928
         <tr>
929
            <td class="rt_lineLeft"></td>
930
            <td class="rt_content">
931
               <table class="component">
932
                  <tbody>
933
                     <tr>
934
                        <td class="firstColumn"><b>Namespace</b></td>
935
                        <td>http://namespace.openaire.eu/oaf</td>
936
                     </tr>
937
                     <tr>
938
                        <td class="firstColumn">
939
                           <div class="floatLeft"><b>Diagram</b></div>
940
                           <div class="floatRight"><input id="button_diagram_datasource_logourl" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_logourl');" class="control" /></div>
941
                        </td>
942
                        <td class="diagram">
943
                           <div id="diagram_datasource_logourl" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_logourl.jpeg" /></div>
944
                        </td>
945
                     </tr>
946
                     <tr>
947
                        <td class="firstColumn"><b>Type</b></td>
948
                        <td><b>xs:string</b></td>
949
                     </tr>
950
                     <tr>
951
                        <td class="firstColumn">
952
                           <div class="floatLeft"><b>Properties</b></div>
953
                           <div class="floatRight"><input id="button_properties_datasource_logourl" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_logourl');" class="control" /></div>
954
                        </td>
955
                        <td>
956
                           <div id="properties_datasource_logourl" style="display:block">
957
                              <table class="propertiesTable">
958
                                 <tr>
959
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
960
                                    <td><b>simple</b></td>
961
                                 </tr>
962
                              </table>
963
                           </div>
964
                        </td>
965
                     </tr>
966
                     <tr>
967
                        <td class="firstColumn">
968
                           <div class="floatLeft"><b>Source</b></div>
969
                           <div class="floatRight"><input id="button_source_datasource_logourl" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_logourl');" class="control" /></div>
970
                        </td>
971
                        <td>
972
                           <div id="source_datasource_logourl" style="display:block">
973
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
974
                                 <tr>
975
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"logourl"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span></pre></td>
976
                                 </tr>
977
                              </table>
978
                           </div>
979
                        </td>
980
                     </tr>
981
                     <tr>
982
                        <td class="firstColumn"><b>Schema location</b></td>
983
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
984
                     </tr>
985
                  </tbody>
986
               </table>
987
            </td>
988
            <td class="rt_lineRight"></td>
989
         </tr>
990
         <tr>
991
            <td class="rt_cornerBottomLeft"></td>
992
            <td class="rt_lineBottom"></td>
993
            <td class="rt_cornerBottomRight"></td>
994
         </tr>
995
      </table><a id="datasource_contactemail"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-datasource-1_0_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource</a></b> / contactemail</span></div>
996
      <table class="rt">
997
         <tr>
998
            <td class="rt_cornerTopLeft"></td>
999
            <td class="rt_lineTop"></td>
1000
            <td class="rt_cornerTopRight"></td>
1001
         </tr>
1002
         <tr>
1003
            <td class="rt_lineLeft"></td>
1004
            <td class="rt_content">
1005
               <table class="component">
1006
                  <tbody>
1007
                     <tr>
1008
                        <td class="firstColumn"><b>Namespace</b></td>
1009
                        <td>http://namespace.openaire.eu/oaf</td>
1010
                     </tr>
1011
                     <tr>
1012
                        <td class="firstColumn">
1013
                           <div class="floatLeft"><b>Diagram</b></div>
1014
                           <div class="floatRight"><input id="button_diagram_datasource_contactemail" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_contactemail');" class="control" /></div>
1015
                        </td>
1016
                        <td class="diagram">
1017
                           <div id="diagram_datasource_contactemail" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_contactemail.jpeg" /></div>
1018
                        </td>
1019
                     </tr>
1020
                     <tr>
1021
                        <td class="firstColumn"><b>Type</b></td>
1022
                        <td><b>xs:string</b></td>
1023
                     </tr>
1024
                     <tr>
1025
                        <td class="firstColumn">
1026
                           <div class="floatLeft"><b>Properties</b></div>
1027
                           <div class="floatRight"><input id="button_properties_datasource_contactemail" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_contactemail');" class="control" /></div>
1028
                        </td>
1029
                        <td>
1030
                           <div id="properties_datasource_contactemail" style="display:block">
1031
                              <table class="propertiesTable">
1032
                                 <tr>
1033
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
1034
                                    <td><b>simple</b></td>
1035
                                 </tr>
1036
                              </table>
1037
                           </div>
1038
                        </td>
1039
                     </tr>
1040
                     <tr>
1041
                        <td class="firstColumn">
1042
                           <div class="floatLeft"><b>Source</b></div>
1043
                           <div class="floatRight"><input id="button_source_datasource_contactemail" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_contactemail');" class="control" /></div>
1044
                        </td>
1045
                        <td>
1046
                           <div id="source_datasource_contactemail" style="display:block">
1047
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
1048
                                 <tr>
1049
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"contactemail"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span></pre></td>
1050
                                 </tr>
1051
                              </table>
1052
                           </div>
1053
                        </td>
1054
                     </tr>
1055
                     <tr>
1056
                        <td class="firstColumn"><b>Schema location</b></td>
1057
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
1058
                     </tr>
1059
                  </tbody>
1060
               </table>
1061
            </td>
1062
            <td class="rt_lineRight"></td>
1063
         </tr>
1064
         <tr>
1065
            <td class="rt_cornerBottomLeft"></td>
1066
            <td class="rt_lineBottom"></td>
1067
            <td class="rt_cornerBottomRight"></td>
1068
         </tr>
1069
      </table><a id="datasource_datasourcetype"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-datasource-1_0_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource</a></b> / datasourcetype</span></div>
1070
      <table class="rt">
1071
         <tr>
1072
            <td class="rt_cornerTopLeft"></td>
1073
            <td class="rt_lineTop"></td>
1074
            <td class="rt_cornerTopRight"></td>
1075
         </tr>
1076
         <tr>
1077
            <td class="rt_lineLeft"></td>
1078
            <td class="rt_content">
1079
               <table class="component">
1080
                  <tbody>
1081
                     <tr>
1082
                        <td class="firstColumn"><b>Namespace</b></td>
1083
                        <td>http://namespace.openaire.eu/oaf</td>
1084
                     </tr>
1085
                     <tr>
1086
                        <td class="firstColumn">
1087
                           <div class="floatLeft"><b>Annotations</b></div>
1088
                           <div class="floatRight"><input id="button_annotations_datasource_datasourcetype" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_datasource_datasourcetype');" class="control" /></div>
1089
                        </td>
1090
                        <td>
1091
                           <div id="annotations_datasource_datasourcetype" style="display:block">
1092
                              <div class="annotation">
1093
                                 <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
1094
                                    <tr>
1095
                                       <td width="100%"><pre><span class="tT">For allowed values check terms in:http://api.openaire.eu/vocabularies/dnet:datasource_typologies</span></pre></td>
1096
                                    </tr>
1097
                                 </table>
1098
                              </div>
1099
                           </div>
1100
                        </td>
1101
                     </tr>
1102
                     <tr>
1103
                        <td class="firstColumn">
1104
                           <div class="floatLeft"><b>Diagram</b></div>
1105
                           <div class="floatRight"><input id="button_diagram_datasource_datasourcetype" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_datasourcetype');" class="control" /></div>
1106
                        </td>
1107
                        <td class="diagram">
1108
                           <div id="diagram_datasource_datasourcetype" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_datasourcetype.jpeg" usemap="#oaf-datasource-1_0_xsd_Element_datasourcetype" /><map name="oaf-datasource-1_0_xsd_Element_datasourcetype" id="oaf-datasource-1_0_xsd_Element_datasourcetype">
1109
                                 <area alt="oaf-common-1_0_xsd.tmp#qualifierAttributeGroup" href="oaf-common-1_0_xsd.html#qualifierAttributeGroup" coords="193,81,374,107" />
1110
                                 <area alt="oaf-common-1_0_xsd.tmp#qualifierType" href="oaf-common-1_0_xsd.html#qualifierType" coords="165,3,286,25" /></map></div>
1111
                        </td>
1112
                     </tr>
1113
                     <tr>
1114
                        <td class="firstColumn"><b>Type</b></td>
1115
                        <td><b><a href="oaf-common-1_0_xsd.html#qualifierType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">qualifierType</a></b></td>
1116
                     </tr>
1117
                     <tr>
1118
                        <td class="firstColumn">
1119
                           <div class="floatLeft"><b>Properties</b></div>
1120
                           <div class="floatRight"><input id="button_properties_datasource_datasourcetype" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_datasourcetype');" class="control" /></div>
1121
                        </td>
1122
                        <td>
1123
                           <div id="properties_datasource_datasourcetype" style="display:block">
1124
                              <table class="propertiesTable">
1125
                                 <tr>
1126
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
1127
                                    <td><b>complex</b></td>
1128
                                 </tr>
1129
                              </table>
1130
                           </div>
1131
                        </td>
1132
                     </tr>
1133
                     <tr>
1134
                        <td class="firstColumn">
1135
                           <div class="floatLeft"><b>Attributes</b></div>
1136
                           <div class="floatRight"><input id="button_attributes_datasource_datasourcetype" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_datasource_datasourcetype');" class="control" /></div>
1137
                        </td>
1138
                        <td>
1139
                           <div id="attributes_datasource_datasourcetype" style="display:block">
1140
                              <table class="attributesTable">
1141
                                 <thead>
1142
                                    <tr>
1143
                                       <th>QName</th>
1144
                                       <th width="10%">Type</th>
1145
                                       <th width="5%">Use</th>
1146
                                       <th></th>
1147
                                    </tr>
1148
                                 </thead>
1149
                                 <tr>
1150
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_classid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">classid</a></b></td>
1151
                                    <td><b>xs:string</b></td>
1152
                                    <td>required</td>
1153
                                    <td>
1154
                                       <div class="annotation"></div>
1155
                                    </td>
1156
                                 </tr>
1157
                                 <tr>
1158
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_classname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">classname</a></b></td>
1159
                                    <td><b>xs:string</b></td>
1160
                                    <td>required</td>
1161
                                    <td>
1162
                                       <div class="annotation"></div>
1163
                                    </td>
1164
                                 </tr>
1165
                                 <tr>
1166
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_schemeid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">schemeid</a></b></td>
1167
                                    <td><b>xs:string</b></td>
1168
                                    <td>required</td>
1169
                                    <td>
1170
                                       <div class="annotation"></div>
1171
                                    </td>
1172
                                 </tr>
1173
                                 <tr>
1174
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_schemename" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">schemename</a></b></td>
1175
                                    <td><b>xs:string</b></td>
1176
                                    <td>required</td>
1177
                                    <td>
1178
                                       <div class="annotation"></div>
1179
                                    </td>
1180
                                 </tr>
1181
                              </table>
1182
                           </div>
1183
                        </td>
1184
                     </tr>
1185
                     <tr>
1186
                        <td class="firstColumn">
1187
                           <div class="floatLeft"><b>Source</b></div>
1188
                           <div class="floatRight"><input id="button_source_datasource_datasourcetype" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_datasourcetype');" class="control" /></div>
1189
                        </td>
1190
                        <td>
1191
                           <div id="source_datasource_datasourcetype" style="display:block">
1192
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
1193
                                 <tr>
1194
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"datasourcetype"</span><span class="tAN"> type=</span><span class="tAV">"qualifierType"</span><span class="tEl">&gt;</span><span class="tI">
1195
  </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
1196
    </span><span class="tEl">&lt;xs:documentation</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">For allowed values check terms in:http://api.openaire.eu/vocabularies/dnet:datasource_typologies</span><span class="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
1197
  </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
1198
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
1199
                                 </tr>
1200
                              </table>
1201
                           </div>
1202
                        </td>
1203
                     </tr>
1204
                     <tr>
1205
                        <td class="firstColumn"><b>Schema location</b></td>
1206
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
1207
                     </tr>
1208
                  </tbody>
1209
               </table>
1210
            </td>
1211
            <td class="rt_lineRight"></td>
1212
         </tr>
1213
         <tr>
1214
            <td class="rt_cornerBottomLeft"></td>
1215
            <td class="rt_lineBottom"></td>
1216
            <td class="rt_cornerBottomRight"></td>
1217
         </tr>
1218
      </table><a id="datasource_openairecompatibility"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-datasource-1_0_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource</a></b> / openairecompatibility</span></div>
1219
      <table class="rt">
1220
         <tr>
1221
            <td class="rt_cornerTopLeft"></td>
1222
            <td class="rt_lineTop"></td>
1223
            <td class="rt_cornerTopRight"></td>
1224
         </tr>
1225
         <tr>
1226
            <td class="rt_lineLeft"></td>
1227
            <td class="rt_content">
1228
               <table class="component">
1229
                  <tbody>
1230
                     <tr>
1231
                        <td class="firstColumn"><b>Namespace</b></td>
1232
                        <td>http://namespace.openaire.eu/oaf</td>
1233
                     </tr>
1234
                     <tr>
1235
                        <td class="firstColumn">
1236
                           <div class="floatLeft"><b>Annotations</b></div>
1237
                           <div class="floatRight"><input id="button_annotations_datasource_openairecompatibility" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_datasource_openairecompatibility');" class="control" /></div>
1238
                        </td>
1239
                        <td>
1240
                           <div id="annotations_datasource_openairecompatibility" style="display:block">
1241
                              <div class="annotation">
1242
                                 <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
1243
                                    <tr>
1244
                                       <td width="100%"><pre><span class="tT">Level of compatibility of this datasource with regards to the</span><span class="tI">
1245
</span><span class="tT">guidelines. </span><span class="tEl">&lt;p</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">For allowed values check: http://api.openaire.eu/vocabularies/dnet:datasourceCompatibilityLevel</span><span class="tEl">&lt;/p&gt;</span><span class="tI">
1246
</span></pre></td>
1247
                                    </tr>
1248
                                 </table>
1249
                              </div>
1250
                           </div>
1251
                        </td>
1252
                     </tr>
1253
                     <tr>
1254
                        <td class="firstColumn">
1255
                           <div class="floatLeft"><b>Diagram</b></div>
1256
                           <div class="floatRight"><input id="button_diagram_datasource_openairecompatibility" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_openairecompatibility');" class="control" /></div>
1257
                        </td>
1258
                        <td class="diagram">
1259
                           <div id="diagram_datasource_openairecompatibility" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_openairecompatibility.jpeg" usemap="#oaf-datasource-1_0_xsd_Element_openairecompatibility" /><map name="oaf-datasource-1_0_xsd_Element_openairecompatibility" id="oaf-datasource-1_0_xsd_Element_openairecompatibility">
1260
                                 <area alt="oaf-common-1_0_xsd.tmp#qualifierAttributeGroup" href="oaf-common-1_0_xsd.html#qualifierAttributeGroup" coords="226,81,407,107" />
1261
                                 <area alt="oaf-common-1_0_xsd.tmp#qualifierType" href="oaf-common-1_0_xsd.html#qualifierType" coords="198,3,319,25" /></map></div>
1262
                        </td>
1263
                     </tr>
1264
                     <tr>
1265
                        <td class="firstColumn"><b>Type</b></td>
1266
                        <td><b><a href="oaf-common-1_0_xsd.html#qualifierType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">qualifierType</a></b></td>
1267
                     </tr>
1268
                     <tr>
1269
                        <td class="firstColumn">
1270
                           <div class="floatLeft"><b>Properties</b></div>
1271
                           <div class="floatRight"><input id="button_properties_datasource_openairecompatibility" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_openairecompatibility');" class="control" /></div>
1272
                        </td>
1273
                        <td>
1274
                           <div id="properties_datasource_openairecompatibility" style="display:block">
1275
                              <table class="propertiesTable">
1276
                                 <tr>
1277
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
1278
                                    <td><b>complex</b></td>
1279
                                 </tr>
1280
                              </table>
1281
                           </div>
1282
                        </td>
1283
                     </tr>
1284
                     <tr>
1285
                        <td class="firstColumn">
1286
                           <div class="floatLeft"><b>Attributes</b></div>
1287
                           <div class="floatRight"><input id="button_attributes_datasource_openairecompatibility" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_datasource_openairecompatibility');" class="control" /></div>
1288
                        </td>
1289
                        <td>
1290
                           <div id="attributes_datasource_openairecompatibility" style="display:block">
1291
                              <table class="attributesTable">
1292
                                 <thead>
1293
                                    <tr>
1294
                                       <th>QName</th>
1295
                                       <th width="10%">Type</th>
1296
                                       <th width="5%">Use</th>
1297
                                       <th></th>
1298
                                    </tr>
1299
                                 </thead>
1300
                                 <tr>
1301
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_classid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">classid</a></b></td>
1302
                                    <td><b>xs:string</b></td>
1303
                                    <td>required</td>
1304
                                    <td>
1305
                                       <div class="annotation"></div>
1306
                                    </td>
1307
                                 </tr>
1308
                                 <tr>
1309
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_classname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">classname</a></b></td>
1310
                                    <td><b>xs:string</b></td>
1311
                                    <td>required</td>
1312
                                    <td>
1313
                                       <div class="annotation"></div>
1314
                                    </td>
1315
                                 </tr>
1316
                                 <tr>
1317
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_schemeid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">schemeid</a></b></td>
1318
                                    <td><b>xs:string</b></td>
1319
                                    <td>required</td>
1320
                                    <td>
1321
                                       <div class="annotation"></div>
1322
                                    </td>
1323
                                 </tr>
1324
                                 <tr>
1325
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_schemename" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">schemename</a></b></td>
1326
                                    <td><b>xs:string</b></td>
1327
                                    <td>required</td>
1328
                                    <td>
1329
                                       <div class="annotation"></div>
1330
                                    </td>
1331
                                 </tr>
1332
                              </table>
1333
                           </div>
1334
                        </td>
1335
                     </tr>
1336
                     <tr>
1337
                        <td class="firstColumn">
1338
                           <div class="floatLeft"><b>Source</b></div>
1339
                           <div class="floatRight"><input id="button_source_datasource_openairecompatibility" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_openairecompatibility');" class="control" /></div>
1340
                        </td>
1341
                        <td>
1342
                           <div id="source_datasource_openairecompatibility" style="display:block">
1343
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
1344
                                 <tr>
1345
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"openairecompatibility"</span><span class="tAN"> type=</span><span class="tAV">"qualifierType"</span><span class="tEl">&gt;</span><span class="tI">
1346
  </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
1347
    </span><span class="tEl">&lt;xs:documentation</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">Level of compatibility of this datasource with regards to the guidelines.</span><span class="tI">
1348
      </span><span class="tEl">&lt;p</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">For allowed values check: http://api.openaire.eu/vocabularies/dnet:datasourceCompatibilityLevel</span><span class="tEl">&lt;/p&gt;</span><span class="tI">
1349
    </span><span class="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
1350
  </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
1351
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
1352
                                 </tr>
1353
                              </table>
1354
                           </div>
1355
                        </td>
1356
                     </tr>
1357
                     <tr>
1358
                        <td class="firstColumn"><b>Schema location</b></td>
1359
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
1360
                     </tr>
1361
                  </tbody>
1362
               </table>
1363
            </td>
1364
            <td class="rt_lineRight"></td>
1365
         </tr>
1366
         <tr>
1367
            <td class="rt_cornerBottomLeft"></td>
1368
            <td class="rt_lineBottom"></td>
1369
            <td class="rt_cornerBottomRight"></td>
1370
         </tr>
1371
      </table><a id="datasource_dateofvalidation"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-datasource-1_0_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource</a></b> / dateofvalidation</span></div>
1372
      <table class="rt">
1373
         <tr>
1374
            <td class="rt_cornerTopLeft"></td>
1375
            <td class="rt_lineTop"></td>
1376
            <td class="rt_cornerTopRight"></td>
1377
         </tr>
1378
         <tr>
1379
            <td class="rt_lineLeft"></td>
1380
            <td class="rt_content">
1381
               <table class="component">
1382
                  <tbody>
1383
                     <tr>
1384
                        <td class="firstColumn"><b>Namespace</b></td>
1385
                        <td>http://namespace.openaire.eu/oaf</td>
1386
                     </tr>
1387
                     <tr>
1388
                        <td class="firstColumn">
1389
                           <div class="floatLeft"><b>Annotations</b></div>
1390
                           <div class="floatRight"><input id="button_annotations_datasource_dateofvalidation" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_datasource_dateofvalidation');" class="control" /></div>
1391
                        </td>
1392
                        <td>
1393
                           <div id="annotations_datasource_dateofvalidation" style="display:block">
1394
                              <div class="annotation">
1395
                                 <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
1396
                                    <tr>
1397
                                       <td width="100%"><pre><span class="tT">When this datasource has been validated by the</span><span class="tI">
1398
</span><span class="tT">OpenAire</span><span class="tI">
1399
</span><span class="tT">Validator.</span></pre></td>
1400
                                    </tr>
1401
                                 </table>
1402
                              </div>
1403
                           </div>
1404
                        </td>
1405
                     </tr>
1406
                     <tr>
1407
                        <td class="firstColumn">
1408
                           <div class="floatLeft"><b>Diagram</b></div>
1409
                           <div class="floatRight"><input id="button_diagram_datasource_dateofvalidation" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_dateofvalidation');" class="control" /></div>
1410
                        </td>
1411
                        <td class="diagram">
1412
                           <div id="diagram_datasource_dateofvalidation" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_dateofvalidation.jpeg" /></div>
1413
                        </td>
1414
                     </tr>
1415
                     <tr>
1416
                        <td class="firstColumn"><b>Type</b></td>
1417
                        <td><b>xs:string</b></td>
1418
                     </tr>
1419
                     <tr>
1420
                        <td class="firstColumn">
1421
                           <div class="floatLeft"><b>Properties</b></div>
1422
                           <div class="floatRight"><input id="button_properties_datasource_dateofvalidation" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_dateofvalidation');" class="control" /></div>
1423
                        </td>
1424
                        <td>
1425
                           <div id="properties_datasource_dateofvalidation" style="display:block">
1426
                              <table class="propertiesTable">
1427
                                 <tr>
1428
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
1429
                                    <td><b>simple</b></td>
1430
                                 </tr>
1431
                              </table>
1432
                           </div>
1433
                        </td>
1434
                     </tr>
1435
                     <tr>
1436
                        <td class="firstColumn">
1437
                           <div class="floatLeft"><b>Source</b></div>
1438
                           <div class="floatRight"><input id="button_source_datasource_dateofvalidation" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_dateofvalidation');" class="control" /></div>
1439
                        </td>
1440
                        <td>
1441
                           <div id="source_datasource_dateofvalidation" style="display:block">
1442
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
1443
                                 <tr>
1444
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"dateofvalidation"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">&gt;</span><span class="tI">
1445
  </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
1446
    </span><span class="tEl">&lt;xs:documentation</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">When this datasource has been validated by the OpenAire Validator.</span><span class="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
1447
  </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
1448
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
1449
                                 </tr>
1450
                              </table>
1451
                           </div>
1452
                        </td>
1453
                     </tr>
1454
                     <tr>
1455
                        <td class="firstColumn"><b>Schema location</b></td>
1456
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
1457
                     </tr>
1458
                  </tbody>
1459
               </table>
1460
            </td>
1461
            <td class="rt_lineRight"></td>
1462
         </tr>
1463
         <tr>
1464
            <td class="rt_cornerBottomLeft"></td>
1465
            <td class="rt_lineBottom"></td>
1466
            <td class="rt_cornerBottomRight"></td>
1467
         </tr>
1468
      </table><a id="datasource_latitude"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-datasource-1_0_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource</a></b> / latitude</span></div>
1469
      <table class="rt">
1470
         <tr>
1471
            <td class="rt_cornerTopLeft"></td>
1472
            <td class="rt_lineTop"></td>
1473
            <td class="rt_cornerTopRight"></td>
1474
         </tr>
1475
         <tr>
1476
            <td class="rt_lineLeft"></td>
1477
            <td class="rt_content">
1478
               <table class="component">
1479
                  <tbody>
1480
                     <tr>
1481
                        <td class="firstColumn"><b>Namespace</b></td>
1482
                        <td>http://namespace.openaire.eu/oaf</td>
1483
                     </tr>
1484
                     <tr>
1485
                        <td class="firstColumn">
1486
                           <div class="floatLeft"><b>Diagram</b></div>
1487
                           <div class="floatRight"><input id="button_diagram_datasource_latitude" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_latitude');" class="control" /></div>
1488
                        </td>
1489
                        <td class="diagram">
1490
                           <div id="diagram_datasource_latitude" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_latitude.jpeg" /></div>
1491
                        </td>
1492
                     </tr>
1493
                     <tr>
1494
                        <td class="firstColumn"><b>Type</b></td>
1495
                        <td><b>xs:string</b></td>
1496
                     </tr>
1497
                     <tr>
1498
                        <td class="firstColumn">
1499
                           <div class="floatLeft"><b>Properties</b></div>
1500
                           <div class="floatRight"><input id="button_properties_datasource_latitude" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_latitude');" class="control" /></div>
1501
                        </td>
1502
                        <td>
1503
                           <div id="properties_datasource_latitude" style="display:block">
1504
                              <table class="propertiesTable">
1505
                                 <tr>
1506
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
1507
                                    <td><b>simple</b></td>
1508
                                 </tr>
1509
                              </table>
1510
                           </div>
1511
                        </td>
1512
                     </tr>
1513
                     <tr>
1514
                        <td class="firstColumn">
1515
                           <div class="floatLeft"><b>Source</b></div>
1516
                           <div class="floatRight"><input id="button_source_datasource_latitude" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_latitude');" class="control" /></div>
1517
                        </td>
1518
                        <td>
1519
                           <div id="source_datasource_latitude" style="display:block">
1520
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
1521
                                 <tr>
1522
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"latitude"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span></pre></td>
1523
                                 </tr>
1524
                              </table>
1525
                           </div>
1526
                        </td>
1527
                     </tr>
1528
                     <tr>
1529
                        <td class="firstColumn"><b>Schema location</b></td>
1530
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
1531
                     </tr>
1532
                  </tbody>
1533
               </table>
1534
            </td>
1535
            <td class="rt_lineRight"></td>
1536
         </tr>
1537
         <tr>
1538
            <td class="rt_cornerBottomLeft"></td>
1539
            <td class="rt_lineBottom"></td>
1540
            <td class="rt_cornerBottomRight"></td>
1541
         </tr>
1542
      </table><a id="datasource_longitude"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-datasource-1_0_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource</a></b> / longitude</span></div>
1543
      <table class="rt">
1544
         <tr>
1545
            <td class="rt_cornerTopLeft"></td>
1546
            <td class="rt_lineTop"></td>
1547
            <td class="rt_cornerTopRight"></td>
1548
         </tr>
1549
         <tr>
1550
            <td class="rt_lineLeft"></td>
1551
            <td class="rt_content">
1552
               <table class="component">
1553
                  <tbody>
1554
                     <tr>
1555
                        <td class="firstColumn"><b>Namespace</b></td>
1556
                        <td>http://namespace.openaire.eu/oaf</td>
1557
                     </tr>
1558
                     <tr>
1559
                        <td class="firstColumn">
1560
                           <div class="floatLeft"><b>Diagram</b></div>
1561
                           <div class="floatRight"><input id="button_diagram_datasource_longitude" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_longitude');" class="control" /></div>
1562
                        </td>
1563
                        <td class="diagram">
1564
                           <div id="diagram_datasource_longitude" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_longitude.jpeg" /></div>
1565
                        </td>
1566
                     </tr>
1567
                     <tr>
1568
                        <td class="firstColumn"><b>Type</b></td>
1569
                        <td><b>xs:string</b></td>
1570
                     </tr>
1571
                     <tr>
1572
                        <td class="firstColumn">
1573
                           <div class="floatLeft"><b>Properties</b></div>
1574
                           <div class="floatRight"><input id="button_properties_datasource_longitude" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_longitude');" class="control" /></div>
1575
                        </td>
1576
                        <td>
1577
                           <div id="properties_datasource_longitude" style="display:block">
1578
                              <table class="propertiesTable">
1579
                                 <tr>
1580
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
1581
                                    <td><b>simple</b></td>
1582
                                 </tr>
1583
                              </table>
1584
                           </div>
1585
                        </td>
1586
                     </tr>
1587
                     <tr>
1588
                        <td class="firstColumn">
1589
                           <div class="floatLeft"><b>Source</b></div>
1590
                           <div class="floatRight"><input id="button_source_datasource_longitude" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_longitude');" class="control" /></div>
1591
                        </td>
1592
                        <td>
1593
                           <div id="source_datasource_longitude" style="display:block">
1594
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
1595
                                 <tr>
1596
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"longitude"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span></pre></td>
1597
                                 </tr>
1598
                              </table>
1599
                           </div>
1600
                        </td>
1601
                     </tr>
1602
                     <tr>
1603
                        <td class="firstColumn"><b>Schema location</b></td>
1604
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
1605
                     </tr>
1606
                  </tbody>
1607
               </table>
1608
            </td>
1609
            <td class="rt_lineRight"></td>
1610
         </tr>
1611
         <tr>
1612
            <td class="rt_cornerBottomLeft"></td>
1613
            <td class="rt_lineBottom"></td>
1614
            <td class="rt_cornerBottomRight"></td>
1615
         </tr>
1616
      </table><a id="datasource_description"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-datasource-1_0_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource</a></b> / description</span></div>
1617
      <table class="rt">
1618
         <tr>
1619
            <td class="rt_cornerTopLeft"></td>
1620
            <td class="rt_lineTop"></td>
1621
            <td class="rt_cornerTopRight"></td>
1622
         </tr>
1623
         <tr>
1624
            <td class="rt_lineLeft"></td>
1625
            <td class="rt_content">
1626
               <table class="component">
1627
                  <tbody>
1628
                     <tr>
1629
                        <td class="firstColumn"><b>Namespace</b></td>
1630
                        <td>http://namespace.openaire.eu/oaf</td>
1631
                     </tr>
1632
                     <tr>
1633
                        <td class="firstColumn">
1634
                           <div class="floatLeft"><b>Diagram</b></div>
1635
                           <div class="floatRight"><input id="button_diagram_datasource_description" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_description');" class="control" /></div>
1636
                        </td>
1637
                        <td class="diagram">
1638
                           <div id="diagram_datasource_description" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_description.jpeg" /></div>
1639
                        </td>
1640
                     </tr>
1641
                     <tr>
1642
                        <td class="firstColumn"><b>Type</b></td>
1643
                        <td><b>xs:string</b></td>
1644
                     </tr>
1645
                     <tr>
1646
                        <td class="firstColumn">
1647
                           <div class="floatLeft"><b>Properties</b></div>
1648
                           <div class="floatRight"><input id="button_properties_datasource_description" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_description');" class="control" /></div>
1649
                        </td>
1650
                        <td>
1651
                           <div id="properties_datasource_description" style="display:block">
1652
                              <table class="propertiesTable">
1653
                                 <tr>
1654
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
1655
                                    <td><b>simple</b></td>
1656
                                 </tr>
1657
                              </table>
1658
                           </div>
1659
                        </td>
1660
                     </tr>
1661
                     <tr>
1662
                        <td class="firstColumn">
1663
                           <div class="floatLeft"><b>Source</b></div>
1664
                           <div class="floatRight"><input id="button_source_datasource_description" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_description');" class="control" /></div>
1665
                        </td>
1666
                        <td>
1667
                           <div id="source_datasource_description" style="display:block">
1668
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
1669
                                 <tr>
1670
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"description"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span></pre></td>
1671
                                 </tr>
1672
                              </table>
1673
                           </div>
1674
                        </td>
1675
                     </tr>
1676
                     <tr>
1677
                        <td class="firstColumn"><b>Schema location</b></td>
1678
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
1679
                     </tr>
1680
                  </tbody>
1681
               </table>
1682
            </td>
1683
            <td class="rt_lineRight"></td>
1684
         </tr>
1685
         <tr>
1686
            <td class="rt_cornerBottomLeft"></td>
1687
            <td class="rt_lineBottom"></td>
1688
            <td class="rt_cornerBottomRight"></td>
1689
         </tr>
1690
      </table><a id="datasource_subjects"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-datasource-1_0_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource</a></b> / subjects</span></div>
1691
      <table class="rt">
1692
         <tr>
1693
            <td class="rt_cornerTopLeft"></td>
1694
            <td class="rt_lineTop"></td>
1695
            <td class="rt_cornerTopRight"></td>
1696
         </tr>
1697
         <tr>
1698
            <td class="rt_lineLeft"></td>
1699
            <td class="rt_content">
1700
               <table class="component">
1701
                  <tbody>
1702
                     <tr>
1703
                        <td class="firstColumn"><b>Namespace</b></td>
1704
                        <td>http://namespace.openaire.eu/oaf</td>
1705
                     </tr>
1706
                     <tr>
1707
                        <td class="firstColumn">
1708
                           <div class="floatLeft"><b>Annotations</b></div>
1709
                           <div class="floatRight"><input id="button_annotations_datasource_subjects" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_datasource_subjects');" class="control" /></div>
1710
                        </td>
1711
                        <td>
1712
                           <div id="annotations_datasource_subjects" style="display:block">
1713
                              <div class="annotation">
1714
                                 <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
1715
                                    <tr>
1716
                                       <td width="100%"><pre><span class="tT">Subjects and keywords. </span><span class="tEl">&lt;p</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">For allowed values check: http://api.openaire.eu/vocabularies/dnet:result_subjects</span><span class="tEl">&lt;/p&gt;</span><span class="tI">
1717
</span></pre></td>
1718
                                    </tr>
1719
                                 </table>
1720
                              </div>
1721
                           </div>
1722
                        </td>
1723
                     </tr>
1724
                     <tr>
1725
                        <td class="firstColumn">
1726
                           <div class="floatLeft"><b>Diagram</b></div>
1727
                           <div class="floatRight"><input id="button_diagram_datasource_subjects" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_subjects');" class="control" /></div>
1728
                        </td>
1729
                        <td class="diagram">
1730
                           <div id="diagram_datasource_subjects" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_subjects.jpeg" usemap="#oaf-datasource-1_0_xsd_Element_subjects" /><map name="oaf-datasource-1_0_xsd_Element_subjects" id="oaf-datasource-1_0_xsd_Element_subjects">
1731
                                 <area alt="oaf-common-1_0_xsd.tmp#qualifierAttributeGroup" href="oaf-common-1_0_xsd.html#qualifierAttributeGroup" coords="155,160,336,186" />
1732
                                 <area alt="oaf-common-1_0_xsd.tmp#dataInfoAttributeGroup" href="oaf-common-1_0_xsd.html#dataInfoAttributeGroup" coords="155,204,336,230" />
1733
                                 <area alt="oaf-common-1_0_xsd.tmp#structuredPropertyElementType" href="oaf-common-1_0_xsd.html#structuredPropertyElementType" coords="127,3,349,25" /></map></div>
1734
                        </td>
1735
                     </tr>
1736
                     <tr>
1737
                        <td class="firstColumn"><b>Type</b></td>
1738
                        <td><b><a href="oaf-common-1_0_xsd.html#structuredPropertyElementType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">structuredPropertyElementType</a></b></td>
1739
                     </tr>
1740
                     <tr>
1741
                        <td class="firstColumn">
1742
                           <div class="floatLeft"><b>Properties</b></div>
1743
                           <div class="floatRight"><input id="button_properties_datasource_subjects" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_subjects');" class="control" /></div>
1744
                        </td>
1745
                        <td>
1746
                           <div id="properties_datasource_subjects" style="display:block">
1747
                              <table class="propertiesTable">
1748
                                 <tr>
1749
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
1750
                                    <td><b>complex</b></td>
1751
                                 </tr>
1752
                              </table>
1753
                           </div>
1754
                        </td>
1755
                     </tr>
1756
                     <tr>
1757
                        <td class="firstColumn">
1758
                           <div class="floatLeft"><b>Attributes</b></div>
1759
                           <div class="floatRight"><input id="button_attributes_datasource_subjects" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_datasource_subjects');" class="control" /></div>
1760
                        </td>
1761
                        <td>
1762
                           <div id="attributes_datasource_subjects" style="display:block">
1763
                              <table class="attributesTable">
1764
                                 <thead>
1765
                                    <tr>
1766
                                       <th>QName</th>
1767
                                       <th width="10%">Type</th>
1768
                                       <th width="5%">Use</th>
1769
                                       <th>Annotation</th>
1770
                                    </tr>
1771
                                 </thead>
1772
                                 <tr>
1773
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_classid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">classid</a></b></td>
1774
                                    <td><b>xs:string</b></td>
1775
                                    <td>required</td>
1776
                                    <td>
1777
                                       <div class="annotation"></div>
1778
                                    </td>
1779
                                 </tr>
1780
                                 <tr>
1781
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_classname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">classname</a></b></td>
1782
                                    <td><b>xs:string</b></td>
1783
                                    <td>required</td>
1784
                                    <td>
1785
                                       <div class="annotation"></div>
1786
                                    </td>
1787
                                 </tr>
1788
                                 <tr>
1789
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#dataInfoAttributeGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferenceprovenance</a></b></td>
1790
                                    <td><b>xs:string</b></td>
1791
                                    <td>optional</td>
1792
                                    <td>
1793
                                       <div class="annotation">
1794
                                          <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
1795
                                             <tr>
1796
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
1797
                                             </tr>
1798
                                          </table>
1799
                                       </div>
1800
                                    </td>
1801
                                 </tr>
1802
                                 <tr>
1803
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#dataInfoAttributeGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferred</a></b></td>
1804
                                    <td><b>xs:boolean</b></td>
1805
                                    <td>optional</td>
1806
                                    <td>
1807
                                       <div class="annotation">
1808
                                          <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
1809
                                             <tr>
1810
                                                <td width="100%"><pre><span class="tT">True if this information has been inferred by the automatic</span><span class="tI">
1811
</span><span class="tT">inference algorithms run by OpenAIRE.</span></pre></td>
1812
                                             </tr>
1813
                                          </table>
1814
                                       </div>
1815
                                    </td>
1816
                                 </tr>
1817
                                 <tr>
1818
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_schemeid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">schemeid</a></b></td>
1819
                                    <td><b>xs:string</b></td>
1820
                                    <td>required</td>
1821
                                    <td>
1822
                                       <div class="annotation"></div>
1823
                                    </td>
1824
                                 </tr>
1825
                                 <tr>
1826
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_schemename" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">schemename</a></b></td>
1827
                                    <td><b>xs:string</b></td>
1828
                                    <td>required</td>
1829
                                    <td>
1830
                                       <div class="annotation"></div>
1831
                                    </td>
1832
                                 </tr>
1833
                                 <tr>
1834
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#dataInfoAttributeGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">trust</a></b></td>
1835
                                    <td><b>xs:string</b></td>
1836
                                    <td>optional</td>
1837
                                    <td>
1838
                                       <div class="annotation">
1839
                                          <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
1840
                                             <tr>
1841
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range [0,1]. More the</span><span class="tI">
1842
</span><span class="tT">value, more trustworthy is the information.</span></pre></td>
1843
                                             </tr>
1844
                                          </table>
1845
                                       </div>
1846
                                    </td>
1847
                                 </tr>
1848
                              </table>
1849
                           </div>
1850
                        </td>
1851
                     </tr>
1852
                     <tr>
1853
                        <td class="firstColumn">
1854
                           <div class="floatLeft"><b>Source</b></div>
1855
                           <div class="floatRight"><input id="button_source_datasource_subjects" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_subjects');" class="control" /></div>
1856
                        </td>
1857
                        <td>
1858
                           <div id="source_datasource_subjects" style="display:block">
1859
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
1860
                                 <tr>
1861
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"subjects"</span><span class="tAN"> type=</span><span class="tAV">"structuredPropertyElementType"</span><span class="tEl">&gt;</span><span class="tI">
1862
  </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
1863
    </span><span class="tEl">&lt;xs:documentation</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">Subjects and keywords.</span><span class="tI">
1864
      </span><span class="tEl">&lt;p</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">For allowed values check: http://api.openaire.eu/vocabularies/dnet:result_subjects</span><span class="tEl">&lt;/p&gt;</span><span class="tI">
1865
    </span><span class="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
1866
  </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
1867
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
1868
                                 </tr>
1869
                              </table>
1870
                           </div>
1871
                        </td>
1872
                     </tr>
1873
                     <tr>
1874
                        <td class="firstColumn"><b>Schema location</b></td>
1875
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
1876
                     </tr>
1877
                  </tbody>
1878
               </table>
1879
            </td>
1880
            <td class="rt_lineRight"></td>
1881
         </tr>
1882
         <tr>
1883
            <td class="rt_cornerBottomLeft"></td>
1884
            <td class="rt_lineBottom"></td>
1885
            <td class="rt_cornerBottomRight"></td>
1886
         </tr>
1887
      </table><a id="datasource_originalId"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-datasource-1_0_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource</a></b> / originalId</span></div>
1888
      <table class="rt">
1889
         <tr>
1890
            <td class="rt_cornerTopLeft"></td>
1891
            <td class="rt_lineTop"></td>
1892
            <td class="rt_cornerTopRight"></td>
1893
         </tr>
1894
         <tr>
1895
            <td class="rt_lineLeft"></td>
1896
            <td class="rt_content">
1897
               <table class="component">
1898
                  <tbody>
1899
                     <tr>
1900
                        <td class="firstColumn"><b>Namespace</b></td>
1901
                        <td>http://namespace.openaire.eu/oaf</td>
1902
                     </tr>
1903
                     <tr>
1904
                        <td class="firstColumn">
1905
                           <div class="floatLeft"><b>Diagram</b></div>
1906
                           <div class="floatRight"><input id="button_diagram_datasource_originalId" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_originalId');" class="control" /></div>
1907
                        </td>
1908
                        <td class="diagram">
1909
                           <div id="diagram_datasource_originalId" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_originalId.jpeg" /></div>
1910
                        </td>
1911
                     </tr>
1912
                     <tr>
1913
                        <td class="firstColumn"><b>Type</b></td>
1914
                        <td><b>xs:string</b></td>
1915
                     </tr>
1916
                     <tr>
1917
                        <td class="firstColumn">
1918
                           <div class="floatLeft"><b>Properties</b></div>
1919
                           <div class="floatRight"><input id="button_properties_datasource_originalId" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_originalId');" class="control" /></div>
1920
                        </td>
1921
                        <td>
1922
                           <div id="properties_datasource_originalId" style="display:block">
1923
                              <table class="propertiesTable">
1924
                                 <tr>
1925
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
1926
                                    <td><b>simple</b></td>
1927
                                 </tr>
1928
                              </table>
1929
                           </div>
1930
                        </td>
1931
                     </tr>
1932
                     <tr>
1933
                        <td class="firstColumn">
1934
                           <div class="floatLeft"><b>Source</b></div>
1935
                           <div class="floatRight"><input id="button_source_datasource_originalId" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_originalId');" class="control" /></div>
1936
                        </td>
1937
                        <td>
1938
                           <div id="source_datasource_originalId" style="display:block">
1939
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
1940
                                 <tr>
1941
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"originalId"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span></pre></td>
1942
                                 </tr>
1943
                              </table>
1944
                           </div>
1945
                        </td>
1946
                     </tr>
1947
                     <tr>
1948
                        <td class="firstColumn"><b>Schema location</b></td>
1949
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
1950
                     </tr>
1951
                  </tbody>
1952
               </table>
1953
            </td>
1954
            <td class="rt_lineRight"></td>
1955
         </tr>
1956
         <tr>
1957
            <td class="rt_cornerBottomLeft"></td>
1958
            <td class="rt_lineBottom"></td>
1959
            <td class="rt_cornerBottomRight"></td>
1960
         </tr>
1961
      </table><a id="datasource_collectedfrom"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-datasource-1_0_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource</a></b> / collectedfrom</span></div>
1962
      <table class="rt">
1963
         <tr>
1964
            <td class="rt_cornerTopLeft"></td>
1965
            <td class="rt_lineTop"></td>
1966
            <td class="rt_cornerTopRight"></td>
1967
         </tr>
1968
         <tr>
1969
            <td class="rt_lineLeft"></td>
1970
            <td class="rt_content">
1971
               <table class="component">
1972
                  <tbody>
1973
                     <tr>
1974
                        <td class="firstColumn"><b>Namespace</b></td>
1975
                        <td>http://namespace.openaire.eu/oaf</td>
1976
                     </tr>
1977
                     <tr>
1978
                        <td class="firstColumn">
1979
                           <div class="floatLeft"><b>Annotations</b></div>
1980
                           <div class="floatRight"><input id="button_annotations_datasource_collectedfrom" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_datasource_collectedfrom');" class="control" /></div>
1981
                        </td>
1982
                        <td>
1983
                           <div id="annotations_datasource_collectedfrom" style="display:block">
1984
                              <div class="annotation">
1985
                                 <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
1986
                                    <tr>
1987
                                       <td width="100%"><pre><span class="tT">Identifier and name of the datasource from which</span><span class="tI">
1988
</span><span class="tT">this datasource has</span><span class="tI">
1989
</span><span class="tT">been collected from.</span></pre></td>
1990
                                    </tr>
1991
                                 </table>
1992
                              </div>
1993
                           </div>
1994
                        </td>
1995
                     </tr>
1996
                     <tr>
1997
                        <td class="firstColumn">
1998
                           <div class="floatLeft"><b>Diagram</b></div>
1999
                           <div class="floatRight"><input id="button_diagram_datasource_collectedfrom" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_collectedfrom');" class="control" /></div>
2000
                        </td>
2001
                        <td class="diagram">
2002
                           <div id="diagram_datasource_collectedfrom" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_collectedfrom.jpeg" usemap="#oaf-datasource-1_0_xsd_Element_collectedfrom" /><map name="oaf-datasource-1_0_xsd_Element_collectedfrom" id="oaf-datasource-1_0_xsd_Element_collectedfrom">
2003
                                 <area alt="oaf-common-1_0_xsd.tmp#namedIdElementType_id" href="oaf-common-1_0_xsd.html#namedIdElementType_id" coords="181,78,238,102" />
2004
                                 <area alt="oaf-common-1_0_xsd.tmp#namedIdElementType_name" href="oaf-common-1_0_xsd.html#namedIdElementType_name" coords="181,112,247,136" />
2005
                                 <area alt="oaf-common-1_0_xsd.tmp#dataInfoAttributeGroup" href="oaf-common-1_0_xsd.html#dataInfoAttributeGroup" coords="184,149,365,175" />
2006
                                 <area alt="oaf-common-1_0_xsd.tmp#namedIdElementType" href="oaf-common-1_0_xsd.html#namedIdElementType" coords="156,3,321,25" /></map></div>
2007
                        </td>
2008
                     </tr>
2009
                     <tr>
2010
                        <td class="firstColumn"><b>Type</b></td>
2011
                        <td><b><a href="oaf-common-1_0_xsd.html#namedIdElementType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">namedIdElementType</a></b></td>
2012
                     </tr>
2013
                     <tr>
2014
                        <td class="firstColumn">
2015
                           <div class="floatLeft"><b>Properties</b></div>
2016
                           <div class="floatRight"><input id="button_properties_datasource_collectedfrom" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_collectedfrom');" class="control" /></div>
2017
                        </td>
2018
                        <td>
2019
                           <div id="properties_datasource_collectedfrom" style="display:block">
2020
                              <table class="propertiesTable">
2021
                                 <tr>
2022
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
2023
                                    <td><b>complex</b></td>
2024
                                 </tr>
2025
                              </table>
2026
                           </div>
2027
                        </td>
2028
                     </tr>
2029
                     <tr>
2030
                        <td class="firstColumn">
2031
                           <div class="floatLeft"><b>Attributes</b></div>
2032
                           <div class="floatRight"><input id="button_attributes_datasource_collectedfrom" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_datasource_collectedfrom');" class="control" /></div>
2033
                        </td>
2034
                        <td>
2035
                           <div id="attributes_datasource_collectedfrom" style="display:block">
2036
                              <table class="attributesTable">
2037
                                 <thead>
2038
                                    <tr>
2039
                                       <th>QName</th>
2040
                                       <th width="10%">Type</th>
2041
                                       <th width="5%">Use</th>
2042
                                       <th>Annotation</th>
2043
                                    </tr>
2044
                                 </thead>
2045
                                 <tr>
2046
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_classid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">classid</a></b></td>
2047
                                    <td><b>xs:string</b></td>
2048
                                    <td>required</td>
2049
                                    <td>
2050
                                       <div class="annotation"></div>
2051
                                    </td>
2052
                                 </tr>
2053
                                 <tr>
2054
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_classname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">classname</a></b></td>
2055
                                    <td><b>xs:string</b></td>
2056
                                    <td>required</td>
2057
                                    <td>
2058
                                       <div class="annotation"></div>
2059
                                    </td>
2060
                                 </tr>
2061
                                 <tr>
2062
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#namedIdElementType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">id</a></b></td>
2063
                                    <td></td>
2064
                                    <td>required</td>
2065
                                    <td>
2066
                                       <div class="annotation"></div>
2067
                                    </td>
2068
                                 </tr>
2069
                                 <tr>
2070
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#dataInfoAttributeGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferenceprovenance</a></b></td>
2071
                                    <td><b>xs:string</b></td>
2072
                                    <td>optional</td>
2073
                                    <td>
2074
                                       <div class="annotation">
2075
                                          <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
2076
                                             <tr>
2077
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
2078
                                             </tr>
2079
                                          </table>
2080
                                       </div>
2081
                                    </td>
2082
                                 </tr>
2083
                                 <tr>
2084
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#dataInfoAttributeGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferred</a></b></td>
2085
                                    <td><b>xs:boolean</b></td>
2086
                                    <td>optional</td>
2087
                                    <td>
2088
                                       <div class="annotation">
2089
                                          <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
2090
                                             <tr>
2091
                                                <td width="100%"><pre><span class="tT">True if this information has been inferred by the automatic</span><span class="tI">
2092
</span><span class="tT">inference algorithms run by OpenAIRE.</span></pre></td>
2093
                                             </tr>
2094
                                          </table>
2095
                                       </div>
2096
                                    </td>
2097
                                 </tr>
2098
                                 <tr>
2099
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#namedIdElementType_name" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">name</a></b></td>
2100
                                    <td></td>
2101
                                    <td>required</td>
2102
                                    <td>
2103
                                       <div class="annotation"></div>
2104
                                    </td>
2105
                                 </tr>
2106
                                 <tr>
2107
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_schemeid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">schemeid</a></b></td>
2108
                                    <td><b>xs:string</b></td>
2109
                                    <td>required</td>
2110
                                    <td>
2111
                                       <div class="annotation"></div>
2112
                                    </td>
2113
                                 </tr>
2114
                                 <tr>
2115
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_schemename" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">schemename</a></b></td>
2116
                                    <td><b>xs:string</b></td>
2117
                                    <td>required</td>
2118
                                    <td>
2119
                                       <div class="annotation"></div>
2120
                                    </td>
2121
                                 </tr>
2122
                                 <tr>
2123
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#dataInfoAttributeGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">trust</a></b></td>
2124
                                    <td><b>xs:string</b></td>
2125
                                    <td>optional</td>
2126
                                    <td>
2127
                                       <div class="annotation">
2128
                                          <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
2129
                                             <tr>
2130
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range [0,1]. More the</span><span class="tI">
2131
</span><span class="tT">value, more trustworthy is the information.</span></pre></td>
2132
                                             </tr>
2133
                                          </table>
2134
                                       </div>
2135
                                    </td>
2136
                                 </tr>
2137
                              </table>
2138
                           </div>
2139
                        </td>
2140
                     </tr>
2141
                     <tr>
2142
                        <td class="firstColumn">
2143
                           <div class="floatLeft"><b>Source</b></div>
2144
                           <div class="floatRight"><input id="button_source_datasource_collectedfrom" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_collectedfrom');" class="control" /></div>
2145
                        </td>
2146
                        <td>
2147
                           <div id="source_datasource_collectedfrom" style="display:block">
2148
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
2149
                                 <tr>
2150
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"collectedfrom"</span><span class="tAN"> type=</span><span class="tAV">"namedIdElementType"</span><span class="tEl">&gt;</span><span class="tI">
2151
  </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
2152
    </span><span class="tEl">&lt;xs:documentation</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">Identifier and name of the datasource from which this datasource has been collected from.</span><span class="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
2153
  </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
2154
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
2155
                                 </tr>
2156
                              </table>
2157
                           </div>
2158
                        </td>
2159
                     </tr>
2160
                     <tr>
2161
                        <td class="firstColumn"><b>Schema location</b></td>
2162
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
2163
                     </tr>
2164
                  </tbody>
2165
               </table>
2166
            </td>
2167
            <td class="rt_lineRight"></td>
2168
         </tr>
2169
         <tr>
2170
            <td class="rt_cornerBottomLeft"></td>
2171
            <td class="rt_lineBottom"></td>
2172
            <td class="rt_cornerBottomRight"></td>
2173
         </tr>
2174
      </table><a id="datasource_pid"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-datasource-1_0_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource</a></b> / pid</span></div>
2175
      <table class="rt">
2176
         <tr>
2177
            <td class="rt_cornerTopLeft"></td>
2178
            <td class="rt_lineTop"></td>
2179
            <td class="rt_cornerTopRight"></td>
2180
         </tr>
2181
         <tr>
2182
            <td class="rt_lineLeft"></td>
2183
            <td class="rt_content">
2184
               <table class="component">
2185
                  <tbody>
2186
                     <tr>
2187
                        <td class="firstColumn"><b>Namespace</b></td>
2188
                        <td>http://namespace.openaire.eu/oaf</td>
2189
                     </tr>
2190
                     <tr>
2191
                        <td class="firstColumn">
2192
                           <div class="floatLeft"><b>Diagram</b></div>
2193
                           <div class="floatRight"><input id="button_diagram_datasource_pid" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_pid');" class="control" /></div>
2194
                        </td>
2195
                        <td class="diagram">
2196
                           <div id="diagram_datasource_pid" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_pid.jpeg" usemap="#oaf-datasource-1_0_xsd_Element_pid" /><map name="oaf-datasource-1_0_xsd_Element_pid" id="oaf-datasource-1_0_xsd_Element_pid">
2197
                                 <area alt="oaf-common-1_0_xsd.tmp#qualifierAttributeGroup" href="oaf-common-1_0_xsd.html#qualifierAttributeGroup" coords="110,160,291,186" />
2198
                                 <area alt="oaf-common-1_0_xsd.tmp#dataInfoAttributeGroup" href="oaf-common-1_0_xsd.html#dataInfoAttributeGroup" coords="110,204,291,230" />
2199
                                 <area alt="oaf-common-1_0_xsd.tmp#structuredPropertyElementType" href="oaf-common-1_0_xsd.html#structuredPropertyElementType" coords="82,3,304,25" /></map></div>
2200
                        </td>
2201
                     </tr>
2202
                     <tr>
2203
                        <td class="firstColumn"><b>Type</b></td>
2204
                        <td><b><a href="oaf-common-1_0_xsd.html#structuredPropertyElementType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">structuredPropertyElementType</a></b></td>
2205
                     </tr>
2206
                     <tr>
2207
                        <td class="firstColumn">
2208
                           <div class="floatLeft"><b>Properties</b></div>
2209
                           <div class="floatRight"><input id="button_properties_datasource_pid" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_pid');" class="control" /></div>
2210
                        </td>
2211
                        <td>
2212
                           <div id="properties_datasource_pid" style="display:block">
2213
                              <table class="propertiesTable">
2214
                                 <tr>
2215
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
2216
                                    <td><b>complex</b></td>
2217
                                 </tr>
2218
                              </table>
2219
                           </div>
2220
                        </td>
2221
                     </tr>
2222
                     <tr>
2223
                        <td class="firstColumn">
2224
                           <div class="floatLeft"><b>Attributes</b></div>
2225
                           <div class="floatRight"><input id="button_attributes_datasource_pid" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_datasource_pid');" class="control" /></div>
2226
                        </td>
2227
                        <td>
2228
                           <div id="attributes_datasource_pid" style="display:block">
2229
                              <table class="attributesTable">
2230
                                 <thead>
2231
                                    <tr>
2232
                                       <th>QName</th>
2233
                                       <th width="10%">Type</th>
2234
                                       <th width="5%">Use</th>
2235
                                       <th>Annotation</th>
2236
                                    </tr>
2237
                                 </thead>
2238
                                 <tr>
2239
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_classid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">classid</a></b></td>
2240
                                    <td><b>xs:string</b></td>
2241
                                    <td>required</td>
2242
                                    <td>
2243
                                       <div class="annotation"></div>
2244
                                    </td>
2245
                                 </tr>
2246
                                 <tr>
2247
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_classname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">classname</a></b></td>
2248
                                    <td><b>xs:string</b></td>
2249
                                    <td>required</td>
2250
                                    <td>
2251
                                       <div class="annotation"></div>
2252
                                    </td>
2253
                                 </tr>
2254
                                 <tr>
2255
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#dataInfoAttributeGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferenceprovenance</a></b></td>
2256
                                    <td><b>xs:string</b></td>
2257
                                    <td>optional</td>
2258
                                    <td>
2259
                                       <div class="annotation">
2260
                                          <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
2261
                                             <tr>
2262
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
2263
                                             </tr>
2264
                                          </table>
2265
                                       </div>
2266
                                    </td>
2267
                                 </tr>
2268
                                 <tr>
2269
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#dataInfoAttributeGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferred</a></b></td>
2270
                                    <td><b>xs:boolean</b></td>
2271
                                    <td>optional</td>
2272
                                    <td>
2273
                                       <div class="annotation">
2274
                                          <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
2275
                                             <tr>
2276
                                                <td width="100%"><pre><span class="tT">True if this information has been inferred by the automatic</span><span class="tI">
2277
</span><span class="tT">inference algorithms run by OpenAIRE.</span></pre></td>
2278
                                             </tr>
2279
                                          </table>
2280
                                       </div>
2281
                                    </td>
2282
                                 </tr>
2283
                                 <tr>
2284
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_schemeid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">schemeid</a></b></td>
2285
                                    <td><b>xs:string</b></td>
2286
                                    <td>required</td>
2287
                                    <td>
2288
                                       <div class="annotation"></div>
2289
                                    </td>
2290
                                 </tr>
2291
                                 <tr>
2292
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#qualifierAttributeGroup_schemename" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">schemename</a></b></td>
2293
                                    <td><b>xs:string</b></td>
2294
                                    <td>required</td>
2295
                                    <td>
2296
                                       <div class="annotation"></div>
2297
                                    </td>
2298
                                 </tr>
2299
                                 <tr>
2300
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#dataInfoAttributeGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">trust</a></b></td>
2301
                                    <td><b>xs:string</b></td>
2302
                                    <td>optional</td>
2303
                                    <td>
2304
                                       <div class="annotation">
2305
                                          <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
2306
                                             <tr>
2307
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range [0,1]. More the</span><span class="tI">
2308
</span><span class="tT">value, more trustworthy is the information.</span></pre></td>
2309
                                             </tr>
2310
                                          </table>
2311
                                       </div>
2312
                                    </td>
2313
                                 </tr>
2314
                              </table>
2315
                           </div>
2316
                        </td>
2317
                     </tr>
2318
                     <tr>
2319
                        <td class="firstColumn">
2320
                           <div class="floatLeft"><b>Source</b></div>
2321
                           <div class="floatRight"><input id="button_source_datasource_pid" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_pid');" class="control" /></div>
2322
                        </td>
2323
                        <td>
2324
                           <div id="source_datasource_pid" style="display:block">
2325
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
2326
                                 <tr>
2327
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"pid"</span><span class="tAN"> type=</span><span class="tAV">"structuredPropertyElementType"</span><span class="tEl">/&gt;</span></pre></td>
2328
                                 </tr>
2329
                              </table>
2330
                           </div>
2331
                        </td>
2332
                     </tr>
2333
                     <tr>
2334
                        <td class="firstColumn"><b>Schema location</b></td>
2335
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
2336
                     </tr>
2337
                  </tbody>
2338
               </table>
2339
            </td>
2340
            <td class="rt_lineRight"></td>
2341
         </tr>
2342
         <tr>
2343
            <td class="rt_cornerBottomLeft"></td>
2344
            <td class="rt_lineBottom"></td>
2345
            <td class="rt_cornerBottomRight"></td>
2346
         </tr>
2347
      </table><a id="datasource_rels"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-datasource-1_0_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-1.0.xsd')">datasource</a></b> / rels</span></div>
2348
      <table class="rt">
2349
         <tr>
2350
            <td class="rt_cornerTopLeft"></td>
2351
            <td class="rt_lineTop"></td>
2352
            <td class="rt_cornerTopRight"></td>
2353
         </tr>
2354
         <tr>
2355
            <td class="rt_lineLeft"></td>
2356
            <td class="rt_content">
2357
               <table class="component">
2358
                  <tbody>
2359
                     <tr>
2360
                        <td class="firstColumn"><b>Namespace</b></td>
2361
                        <td>http://namespace.openaire.eu/oaf</td>
2362
                     </tr>
2363
                     <tr>
2364
                        <td class="firstColumn">
2365
                           <div class="floatLeft"><b>Annotations</b></div>
2366
                           <div class="floatRight"><input id="button_annotations_datasource_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_datasource_rels');" class="control" /></div>
2367
                        </td>
2368
                        <td>
2369
                           <div id="annotations_datasource_rels" style="display:block">
2370
                              <div class="annotation">
2371
                                 <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
2372
                                    <tr>
2373
                                       <td width="100%"><pre><span class="tT">Relationships to other entities.</span></pre></td>
2374
                                    </tr>
2375
                                 </table>
2376
                              </div>
2377
                           </div>
2378
                        </td>
2379
                     </tr>
2380
                     <tr>
2381
                        <td class="firstColumn">
2382
                           <div class="floatLeft"><b>Diagram</b></div>
2383
                           <div class="floatRight"><input id="button_diagram_datasource_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_rels');" class="control" /></div>
2384
                        </td>
2385
                        <td class="diagram">
2386
                           <div id="diagram_datasource_rels" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_rels.jpeg" usemap="#oaf-datasource-1_0_xsd_Element_rels" /><map name="oaf-datasource-1_0_xsd_Element_rels" id="oaf-datasource-1_0_xsd_Element_rels">
2387
                                 <area alt="oaf-common-1_0_xsd.tmp#relsType_rel" href="oaf-common-1_0_xsd.html#relsType_rel" coords="205,44,256,68" />
2388
                                 <area alt="oaf-common-1_0_xsd.tmp#relsType" href="oaf-common-1_0_xsd.html#relsType" coords="123,3,220,25" /></map></div>
2389
                        </td>
2390
                     </tr>
2391
                     <tr>
2392
                        <td class="firstColumn"><b>Type</b></td>
2393
                        <td><b><a href="oaf-common-1_0_xsd.html#relsType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relsType</a></b></td>
2394
                     </tr>
2395
                     <tr>
2396
                        <td class="firstColumn">
2397
                           <div class="floatLeft"><b>Properties</b></div>
2398
                           <div class="floatRight"><input id="button_properties_datasource_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_rels');" class="control" /></div>
2399
                        </td>
2400
                        <td>
2401
                           <div id="properties_datasource_rels" style="display:block">
2402
                              <table class="propertiesTable">
2403
                                 <tr>
2404
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
2405
                                    <td><b>complex</b></td>
2406
                                 </tr>
2407
                              </table>
2408
                           </div>
2409
                        </td>
2410
                     </tr>
2411
                     <tr>
2412
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_datasource_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('model_datasource_rels');" class="control" /></div>
2413
                        </td>
2414
                        <td>
2415
                           <div id="model_datasource_rels" style="display:block"><b><a href="oaf-common-1_0_xsd.html#relsType_rel" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">rel{0,1}</a></b></div>
2416
                        </td>
2417
                     </tr>
2418
                     <tr>
2419
                        <td class="firstColumn"><b>Children</b></td>
2420
                        <td><b><a href="oaf-common-1_0_xsd.html#relsType_rel" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">rel</a></b></td>
2421
                     </tr>
2422
                     <tr>
2423
                        <td class="firstColumn">
2424
                           <div class="floatLeft"><b>Instance</b></div>
2425
                           <div class="floatRight"><input id="button_instance_datasource_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_datasource_rels');" class="control" /></div>
2426
                        </td>
2427
                        <td>
2428
                           <div id="instance_datasource_rels" style="display:block">
2429
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
2430
                                 <tr>
2431
                                    <td width="100%"><pre><span class="tEl">&lt;rels</span><span class="tT"> </span><span class="tAN">xmlns=</span><span class="tAV">"http://namespace.openaire.eu/oaf"</span><span class="tEl">&gt;</span><span class="tI">
2432
  </span><span class="tEl">&lt;rel</span><span class="tT"> </span><span class="tAN">classid=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">classname=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">inferenceprovenance=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">inferred=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">schemeid=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">schemename=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">trust=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{0,1}</span><span class="tEl">&lt;/rel&gt;</span><span class="tI">
2433
</span><span class="tEl">&lt;/rels&gt;</span></pre></td>
2434
                                 </tr>
2435
                              </table>
2436
                           </div>
2437
                        </td>
2438
                     </tr>
2439
                     <tr>
2440
                        <td class="firstColumn">
2441
                           <div class="floatLeft"><b>Source</b></div>
2442
                           <div class="floatRight"><input id="button_source_datasource_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_rels');" class="control" /></div>
2443
                        </td>
2444
                        <td>
2445
                           <div id="source_datasource_rels" style="display:block">
2446
                              <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
2447
                                 <tr>
2448
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"rels"</span><span class="tAN"> type=</span><span class="tAV">"relsType"</span><span class="tEl">&gt;</span><span class="tI">
2449
  </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
2450
    </span><span class="tEl">&lt;xs:documentation</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">Relationships to other entities.</span><span class="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
2451
  </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
2452
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
2453
                                 </tr>
2454
                              </table>
2455
                           </div>
2456
                        </td>
2457
                     </tr>
2458
                     <tr>
2459
                        <td class="firstColumn"><b>Schema location</b></td>
2460
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
2461
                     </tr>
2462
                  </tbody>
2463
               </table>
2464
            </td>
2465
            <td class="rt_lineRight"></td>
2466
         </tr>
2467
         <tr>
2468
            <td class="rt_cornerBottomLeft"></td>
2469
            <td class="rt_lineBottom"></td>
2470
            <td class="rt_cornerBottomRight"></td>
2471
         </tr>
2472
      </table>
2473
      <div class="footer">
2474
         <hr />
2475
         <div align="center">XML Schema documentation generated by <a href="http://www.oxygenxml.com" target="_parent"><span class="oXygenLogo"><span class="redX">&lt;</span>o<span class="redX">X</span>ygen<span class="redX">/&gt;</span></span></a><sup>®</sup> XML Editor.
2476
         </div>
2477
      </div><script type="text/javascript">
2478
         <!--
2479
                     // The namespace is the selected option in the TOC combo.
2480
                    
2481
                     // Floats the toolbar.
2482
                     var globalControls = getElementObject("global_controls"); 
2483
                     
2484
                     if(globalControls != null){
2485
	                     var browser=navigator.appName;
2486
						 var version = parseFloat(navigator.appVersion.split('MSIE')[1]);
2487
						 
2488
						 var IE6 = false;
2489
						 if ((browser=="Microsoft Internet Explorer") && (version < 7)){
2490
						 	IE6 = true;
2491
						 }
2492
	
2493
	                     //alert (IE6 + " |V| " + version);
2494
	                     
2495
	                     if(IE6){
2496
	                     	// On IE 6 the 'fixed' property is not supported. We must use javascript. 
2497
	                         globalControls.style.position='absolute';                         
2498
	                         // The global controls will do not exist in the TOC frame, when chunking.
2499
	                         findAndFloat("global_controls", 225, 30);    
2500
	                     } else {
2501
	                      	  globalControls.style.position='fixed';                     	
2502
	                     }
2503
	                     
2504
	                     globalControls.style.right='0';                       
2505
                     }
2506
                //--></script></body>
2507
</html>
(8-8/13)