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,386,328,410" />
460
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_latitude" href="oaf-datasource-1_0_xsd.html#datasource_latitude" coords="211,463,282,487" />
461
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_longitude" href="oaf-datasource-1_0_xsd.html#datasource_longitude" coords="211,497,293,521" />
462
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_description" href="oaf-datasource-1_0_xsd.html#datasource_description" coords="211,531,303,555" />
463
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_subjects" href="oaf-datasource-1_0_xsd.html#datasource_subjects" coords="211,565,287,589" />
464
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_originalId" href="oaf-datasource-1_0_xsd.html#datasource_originalId" coords="211,668,293,692" />
465
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_collectedfrom" href="oaf-datasource-1_0_xsd.html#datasource_collectedfrom" coords="211,702,316,726" />
466
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_pid" href="oaf-datasource-1_0_xsd.html#datasource_pid" coords="211,779,262,803" />
467
                                 <area alt="oaf-datasource-1_0_xsd.tmp#datasource_rels" href="oaf-datasource-1_0_xsd.html#datasource_rels" coords="211,813,262,837" /></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">code=</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">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;/datasourcetype&gt;</span><span class="tI">
530
  </span><span class="tEl">&lt;openairecompatibility</span><span class="tT"> </span><span class="tAN">code=</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">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;/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">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">trust=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">type=</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">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">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">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">trust=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">type=</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">"controlledElementType"</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">"controlledElementType"</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">"typedElementType"</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">"typedElementType"</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#controlledElementType_code" href="oaf-common-1_0_xsd.html#controlledElementType_code" coords="190,157,264,181" />
1110
                                 <area alt="oaf-common-1_0_xsd.tmp#optionalInferenceAttrGroup" href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup" coords="193,194,397,220" />
1111
                                 <area alt="oaf-common-1_0_xsd.tmp#controlledElementType" href="oaf-common-1_0_xsd.html#controlledElementType" coords="165,3,339,25" /></map></div>
1112
                        </td>
1113
                     </tr>
1114
                     <tr>
1115
                        <td class="firstColumn"><b>Type</b></td>
1116
                        <td><b><a href="oaf-common-1_0_xsd.html#controlledElementType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">controlledElementType</a></b></td>
1117
                     </tr>
1118
                     <tr>
1119
                        <td class="firstColumn">
1120
                           <div class="floatLeft"><b>Properties</b></div>
1121
                           <div class="floatRight"><input id="button_properties_datasource_datasourcetype" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_datasourcetype');" class="control" /></div>
1122
                        </td>
1123
                        <td>
1124
                           <div id="properties_datasource_datasourcetype" style="display:block">
1125
                              <table class="propertiesTable">
1126
                                 <tr>
1127
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
1128
                                    <td><b>complex</b></td>
1129
                                 </tr>
1130
                                 <tr>
1131
                                    <td class="firstColumn" style="white-space: nowrap;">mixed</td>
1132
                                    <td><b>true</b></td>
1133
                                 </tr>
1134
                              </table>
1135
                           </div>
1136
                        </td>
1137
                     </tr>
1138
                     <tr>
1139
                        <td class="firstColumn">
1140
                           <div class="floatLeft"><b>Attributes</b></div>
1141
                           <div class="floatRight"><input id="button_attributes_datasource_datasourcetype" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_datasource_datasourcetype');" class="control" /></div>
1142
                        </td>
1143
                        <td>
1144
                           <div id="attributes_datasource_datasourcetype" style="display:block">
1145
                              <table class="attributesTable">
1146
                                 <thead>
1147
                                    <tr>
1148
                                       <th>QName</th>
1149
                                       <th width="10%">Type</th>
1150
                                       <th width="5%">Use</th>
1151
                                       <th>Annotation</th>
1152
                                    </tr>
1153
                                 </thead>
1154
                                 <tr>
1155
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#controlledElementType_code" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">code</a></b></td>
1156
                                    <td><b>xs:string</b></td>
1157
                                    <td>required</td>
1158
                                    <td>
1159
                                       <div class="annotation"></div>
1160
                                    </td>
1161
                                 </tr>
1162
                                 <tr>
1163
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferenceprovenance</a></b></td>
1164
                                    <td><b>xs:string</b></td>
1165
                                    <td>optional</td>
1166
                                    <td>
1167
                                       <div class="annotation">
1168
                                          <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">
1169
                                             <tr>
1170
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
1171
                                             </tr>
1172
                                          </table>
1173
                                       </div>
1174
                                    </td>
1175
                                 </tr>
1176
                                 <tr>
1177
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferred</a></b></td>
1178
                                    <td><b>xs:boolean</b></td>
1179
                                    <td>optional</td>
1180
                                    <td>
1181
                                       <div class="annotation">
1182
                                          <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">
1183
                                             <tr>
1184
                                                <td width="100%"><pre><span class="tT">True if this information has been inferred by the automatic</span><span class="tI">
1185
</span><span class="tT">inference algorithms run by OpenAIRE.</span></pre></td>
1186
                                             </tr>
1187
                                          </table>
1188
                                       </div>
1189
                                    </td>
1190
                                 </tr>
1191
                                 <tr>
1192
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">trust</a></b></td>
1193
                                    <td><b>xs:string</b></td>
1194
                                    <td>optional</td>
1195
                                    <td>
1196
                                       <div class="annotation">
1197
                                          <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">
1198
                                             <tr>
1199
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range [0,1]. More the</span><span class="tI">
1200
</span><span class="tT">value, more trustworthy is the information.</span></pre></td>
1201
                                             </tr>
1202
                                          </table>
1203
                                       </div>
1204
                                    </td>
1205
                                 </tr>
1206
                              </table>
1207
                           </div>
1208
                        </td>
1209
                     </tr>
1210
                     <tr>
1211
                        <td class="firstColumn">
1212
                           <div class="floatLeft"><b>Source</b></div>
1213
                           <div class="floatRight"><input id="button_source_datasource_datasourcetype" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_datasourcetype');" class="control" /></div>
1214
                        </td>
1215
                        <td>
1216
                           <div id="source_datasource_datasourcetype" style="display:block">
1217
                              <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">
1218
                                 <tr>
1219
                                    <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">"controlledElementType"</span><span class="tEl">&gt;</span><span class="tI">
1220
  </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
1221
    </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">
1222
  </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
1223
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
1224
                                 </tr>
1225
                              </table>
1226
                           </div>
1227
                        </td>
1228
                     </tr>
1229
                     <tr>
1230
                        <td class="firstColumn"><b>Schema location</b></td>
1231
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
1232
                     </tr>
1233
                  </tbody>
1234
               </table>
1235
            </td>
1236
            <td class="rt_lineRight"></td>
1237
         </tr>
1238
         <tr>
1239
            <td class="rt_cornerBottomLeft"></td>
1240
            <td class="rt_lineBottom"></td>
1241
            <td class="rt_cornerBottomRight"></td>
1242
         </tr>
1243
      </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>
1244
      <table class="rt">
1245
         <tr>
1246
            <td class="rt_cornerTopLeft"></td>
1247
            <td class="rt_lineTop"></td>
1248
            <td class="rt_cornerTopRight"></td>
1249
         </tr>
1250
         <tr>
1251
            <td class="rt_lineLeft"></td>
1252
            <td class="rt_content">
1253
               <table class="component">
1254
                  <tbody>
1255
                     <tr>
1256
                        <td class="firstColumn"><b>Namespace</b></td>
1257
                        <td>http://namespace.openaire.eu/oaf</td>
1258
                     </tr>
1259
                     <tr>
1260
                        <td class="firstColumn">
1261
                           <div class="floatLeft"><b>Annotations</b></div>
1262
                           <div class="floatRight"><input id="button_annotations_datasource_openairecompatibility" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_datasource_openairecompatibility');" class="control" /></div>
1263
                        </td>
1264
                        <td>
1265
                           <div id="annotations_datasource_openairecompatibility" style="display:block">
1266
                              <div class="annotation">
1267
                                 <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">
1268
                                    <tr>
1269
                                       <td width="100%"><pre><span class="tT">Level of compatibility of this datasource with regards to the</span><span class="tI">
1270
</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">
1271
</span></pre></td>
1272
                                    </tr>
1273
                                 </table>
1274
                              </div>
1275
                           </div>
1276
                        </td>
1277
                     </tr>
1278
                     <tr>
1279
                        <td class="firstColumn">
1280
                           <div class="floatLeft"><b>Diagram</b></div>
1281
                           <div class="floatRight"><input id="button_diagram_datasource_openairecompatibility" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_openairecompatibility');" class="control" /></div>
1282
                        </td>
1283
                        <td class="diagram">
1284
                           <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">
1285
                                 <area alt="oaf-common-1_0_xsd.tmp#controlledElementType_code" href="oaf-common-1_0_xsd.html#controlledElementType_code" coords="223,157,297,181" />
1286
                                 <area alt="oaf-common-1_0_xsd.tmp#optionalInferenceAttrGroup" href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup" coords="226,194,430,220" />
1287
                                 <area alt="oaf-common-1_0_xsd.tmp#controlledElementType" href="oaf-common-1_0_xsd.html#controlledElementType" coords="198,3,372,25" /></map></div>
1288
                        </td>
1289
                     </tr>
1290
                     <tr>
1291
                        <td class="firstColumn"><b>Type</b></td>
1292
                        <td><b><a href="oaf-common-1_0_xsd.html#controlledElementType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">controlledElementType</a></b></td>
1293
                     </tr>
1294
                     <tr>
1295
                        <td class="firstColumn">
1296
                           <div class="floatLeft"><b>Properties</b></div>
1297
                           <div class="floatRight"><input id="button_properties_datasource_openairecompatibility" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_openairecompatibility');" class="control" /></div>
1298
                        </td>
1299
                        <td>
1300
                           <div id="properties_datasource_openairecompatibility" style="display:block">
1301
                              <table class="propertiesTable">
1302
                                 <tr>
1303
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
1304
                                    <td><b>complex</b></td>
1305
                                 </tr>
1306
                                 <tr>
1307
                                    <td class="firstColumn" style="white-space: nowrap;">mixed</td>
1308
                                    <td><b>true</b></td>
1309
                                 </tr>
1310
                              </table>
1311
                           </div>
1312
                        </td>
1313
                     </tr>
1314
                     <tr>
1315
                        <td class="firstColumn">
1316
                           <div class="floatLeft"><b>Attributes</b></div>
1317
                           <div class="floatRight"><input id="button_attributes_datasource_openairecompatibility" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_datasource_openairecompatibility');" class="control" /></div>
1318
                        </td>
1319
                        <td>
1320
                           <div id="attributes_datasource_openairecompatibility" style="display:block">
1321
                              <table class="attributesTable">
1322
                                 <thead>
1323
                                    <tr>
1324
                                       <th>QName</th>
1325
                                       <th width="10%">Type</th>
1326
                                       <th width="5%">Use</th>
1327
                                       <th>Annotation</th>
1328
                                    </tr>
1329
                                 </thead>
1330
                                 <tr>
1331
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#controlledElementType_code" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">code</a></b></td>
1332
                                    <td><b>xs:string</b></td>
1333
                                    <td>required</td>
1334
                                    <td>
1335
                                       <div class="annotation"></div>
1336
                                    </td>
1337
                                 </tr>
1338
                                 <tr>
1339
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferenceprovenance</a></b></td>
1340
                                    <td><b>xs:string</b></td>
1341
                                    <td>optional</td>
1342
                                    <td>
1343
                                       <div class="annotation">
1344
                                          <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">
1345
                                             <tr>
1346
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
1347
                                             </tr>
1348
                                          </table>
1349
                                       </div>
1350
                                    </td>
1351
                                 </tr>
1352
                                 <tr>
1353
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferred</a></b></td>
1354
                                    <td><b>xs:boolean</b></td>
1355
                                    <td>optional</td>
1356
                                    <td>
1357
                                       <div class="annotation">
1358
                                          <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">
1359
                                             <tr>
1360
                                                <td width="100%"><pre><span class="tT">True if this information has been inferred by the automatic</span><span class="tI">
1361
</span><span class="tT">inference algorithms run by OpenAIRE.</span></pre></td>
1362
                                             </tr>
1363
                                          </table>
1364
                                       </div>
1365
                                    </td>
1366
                                 </tr>
1367
                                 <tr>
1368
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">trust</a></b></td>
1369
                                    <td><b>xs:string</b></td>
1370
                                    <td>optional</td>
1371
                                    <td>
1372
                                       <div class="annotation">
1373
                                          <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">
1374
                                             <tr>
1375
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range [0,1]. More the</span><span class="tI">
1376
</span><span class="tT">value, more trustworthy is the information.</span></pre></td>
1377
                                             </tr>
1378
                                          </table>
1379
                                       </div>
1380
                                    </td>
1381
                                 </tr>
1382
                              </table>
1383
                           </div>
1384
                        </td>
1385
                     </tr>
1386
                     <tr>
1387
                        <td class="firstColumn">
1388
                           <div class="floatLeft"><b>Source</b></div>
1389
                           <div class="floatRight"><input id="button_source_datasource_openairecompatibility" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_openairecompatibility');" class="control" /></div>
1390
                        </td>
1391
                        <td>
1392
                           <div id="source_datasource_openairecompatibility" style="display:block">
1393
                              <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">
1394
                                 <tr>
1395
                                    <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">"controlledElementType"</span><span class="tEl">&gt;</span><span class="tI">
1396
  </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
1397
    </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">
1398
      </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">
1399
    </span><span class="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
1400
  </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
1401
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
1402
                                 </tr>
1403
                              </table>
1404
                           </div>
1405
                        </td>
1406
                     </tr>
1407
                     <tr>
1408
                        <td class="firstColumn"><b>Schema location</b></td>
1409
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
1410
                     </tr>
1411
                  </tbody>
1412
               </table>
1413
            </td>
1414
            <td class="rt_lineRight"></td>
1415
         </tr>
1416
         <tr>
1417
            <td class="rt_cornerBottomLeft"></td>
1418
            <td class="rt_lineBottom"></td>
1419
            <td class="rt_cornerBottomRight"></td>
1420
         </tr>
1421
      </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>
1422
      <table class="rt">
1423
         <tr>
1424
            <td class="rt_cornerTopLeft"></td>
1425
            <td class="rt_lineTop"></td>
1426
            <td class="rt_cornerTopRight"></td>
1427
         </tr>
1428
         <tr>
1429
            <td class="rt_lineLeft"></td>
1430
            <td class="rt_content">
1431
               <table class="component">
1432
                  <tbody>
1433
                     <tr>
1434
                        <td class="firstColumn"><b>Namespace</b></td>
1435
                        <td>http://namespace.openaire.eu/oaf</td>
1436
                     </tr>
1437
                     <tr>
1438
                        <td class="firstColumn">
1439
                           <div class="floatLeft"><b>Annotations</b></div>
1440
                           <div class="floatRight"><input id="button_annotations_datasource_dateofvalidation" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_datasource_dateofvalidation');" class="control" /></div>
1441
                        </td>
1442
                        <td>
1443
                           <div id="annotations_datasource_dateofvalidation" style="display:block">
1444
                              <div class="annotation">
1445
                                 <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">
1446
                                    <tr>
1447
                                       <td width="100%"><pre><span class="tT">When this datasource has been validated by the</span><span class="tI">
1448
</span><span class="tT">OpenAire</span><span class="tI">
1449
</span><span class="tT">Validator.</span></pre></td>
1450
                                    </tr>
1451
                                 </table>
1452
                              </div>
1453
                           </div>
1454
                        </td>
1455
                     </tr>
1456
                     <tr>
1457
                        <td class="firstColumn">
1458
                           <div class="floatLeft"><b>Diagram</b></div>
1459
                           <div class="floatRight"><input id="button_diagram_datasource_dateofvalidation" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_dateofvalidation');" class="control" /></div>
1460
                        </td>
1461
                        <td class="diagram">
1462
                           <div id="diagram_datasource_dateofvalidation" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_dateofvalidation.jpeg" /></div>
1463
                        </td>
1464
                     </tr>
1465
                     <tr>
1466
                        <td class="firstColumn"><b>Type</b></td>
1467
                        <td><b>xs:string</b></td>
1468
                     </tr>
1469
                     <tr>
1470
                        <td class="firstColumn">
1471
                           <div class="floatLeft"><b>Properties</b></div>
1472
                           <div class="floatRight"><input id="button_properties_datasource_dateofvalidation" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_dateofvalidation');" class="control" /></div>
1473
                        </td>
1474
                        <td>
1475
                           <div id="properties_datasource_dateofvalidation" style="display:block">
1476
                              <table class="propertiesTable">
1477
                                 <tr>
1478
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
1479
                                    <td><b>simple</b></td>
1480
                                 </tr>
1481
                              </table>
1482
                           </div>
1483
                        </td>
1484
                     </tr>
1485
                     <tr>
1486
                        <td class="firstColumn">
1487
                           <div class="floatLeft"><b>Source</b></div>
1488
                           <div class="floatRight"><input id="button_source_datasource_dateofvalidation" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_dateofvalidation');" class="control" /></div>
1489
                        </td>
1490
                        <td>
1491
                           <div id="source_datasource_dateofvalidation" style="display:block">
1492
                              <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">
1493
                                 <tr>
1494
                                    <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">
1495
  </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
1496
    </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">
1497
  </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
1498
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
1499
                                 </tr>
1500
                              </table>
1501
                           </div>
1502
                        </td>
1503
                     </tr>
1504
                     <tr>
1505
                        <td class="firstColumn"><b>Schema location</b></td>
1506
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
1507
                     </tr>
1508
                  </tbody>
1509
               </table>
1510
            </td>
1511
            <td class="rt_lineRight"></td>
1512
         </tr>
1513
         <tr>
1514
            <td class="rt_cornerBottomLeft"></td>
1515
            <td class="rt_lineBottom"></td>
1516
            <td class="rt_cornerBottomRight"></td>
1517
         </tr>
1518
      </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>
1519
      <table class="rt">
1520
         <tr>
1521
            <td class="rt_cornerTopLeft"></td>
1522
            <td class="rt_lineTop"></td>
1523
            <td class="rt_cornerTopRight"></td>
1524
         </tr>
1525
         <tr>
1526
            <td class="rt_lineLeft"></td>
1527
            <td class="rt_content">
1528
               <table class="component">
1529
                  <tbody>
1530
                     <tr>
1531
                        <td class="firstColumn"><b>Namespace</b></td>
1532
                        <td>http://namespace.openaire.eu/oaf</td>
1533
                     </tr>
1534
                     <tr>
1535
                        <td class="firstColumn">
1536
                           <div class="floatLeft"><b>Diagram</b></div>
1537
                           <div class="floatRight"><input id="button_diagram_datasource_latitude" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_latitude');" class="control" /></div>
1538
                        </td>
1539
                        <td class="diagram">
1540
                           <div id="diagram_datasource_latitude" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_latitude.jpeg" /></div>
1541
                        </td>
1542
                     </tr>
1543
                     <tr>
1544
                        <td class="firstColumn"><b>Type</b></td>
1545
                        <td><b>xs:string</b></td>
1546
                     </tr>
1547
                     <tr>
1548
                        <td class="firstColumn">
1549
                           <div class="floatLeft"><b>Properties</b></div>
1550
                           <div class="floatRight"><input id="button_properties_datasource_latitude" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_latitude');" class="control" /></div>
1551
                        </td>
1552
                        <td>
1553
                           <div id="properties_datasource_latitude" style="display:block">
1554
                              <table class="propertiesTable">
1555
                                 <tr>
1556
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
1557
                                    <td><b>simple</b></td>
1558
                                 </tr>
1559
                              </table>
1560
                           </div>
1561
                        </td>
1562
                     </tr>
1563
                     <tr>
1564
                        <td class="firstColumn">
1565
                           <div class="floatLeft"><b>Source</b></div>
1566
                           <div class="floatRight"><input id="button_source_datasource_latitude" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_latitude');" class="control" /></div>
1567
                        </td>
1568
                        <td>
1569
                           <div id="source_datasource_latitude" style="display:block">
1570
                              <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">
1571
                                 <tr>
1572
                                    <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>
1573
                                 </tr>
1574
                              </table>
1575
                           </div>
1576
                        </td>
1577
                     </tr>
1578
                     <tr>
1579
                        <td class="firstColumn"><b>Schema location</b></td>
1580
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
1581
                     </tr>
1582
                  </tbody>
1583
               </table>
1584
            </td>
1585
            <td class="rt_lineRight"></td>
1586
         </tr>
1587
         <tr>
1588
            <td class="rt_cornerBottomLeft"></td>
1589
            <td class="rt_lineBottom"></td>
1590
            <td class="rt_cornerBottomRight"></td>
1591
         </tr>
1592
      </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>
1593
      <table class="rt">
1594
         <tr>
1595
            <td class="rt_cornerTopLeft"></td>
1596
            <td class="rt_lineTop"></td>
1597
            <td class="rt_cornerTopRight"></td>
1598
         </tr>
1599
         <tr>
1600
            <td class="rt_lineLeft"></td>
1601
            <td class="rt_content">
1602
               <table class="component">
1603
                  <tbody>
1604
                     <tr>
1605
                        <td class="firstColumn"><b>Namespace</b></td>
1606
                        <td>http://namespace.openaire.eu/oaf</td>
1607
                     </tr>
1608
                     <tr>
1609
                        <td class="firstColumn">
1610
                           <div class="floatLeft"><b>Diagram</b></div>
1611
                           <div class="floatRight"><input id="button_diagram_datasource_longitude" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_longitude');" class="control" /></div>
1612
                        </td>
1613
                        <td class="diagram">
1614
                           <div id="diagram_datasource_longitude" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_longitude.jpeg" /></div>
1615
                        </td>
1616
                     </tr>
1617
                     <tr>
1618
                        <td class="firstColumn"><b>Type</b></td>
1619
                        <td><b>xs:string</b></td>
1620
                     </tr>
1621
                     <tr>
1622
                        <td class="firstColumn">
1623
                           <div class="floatLeft"><b>Properties</b></div>
1624
                           <div class="floatRight"><input id="button_properties_datasource_longitude" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_longitude');" class="control" /></div>
1625
                        </td>
1626
                        <td>
1627
                           <div id="properties_datasource_longitude" style="display:block">
1628
                              <table class="propertiesTable">
1629
                                 <tr>
1630
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
1631
                                    <td><b>simple</b></td>
1632
                                 </tr>
1633
                              </table>
1634
                           </div>
1635
                        </td>
1636
                     </tr>
1637
                     <tr>
1638
                        <td class="firstColumn">
1639
                           <div class="floatLeft"><b>Source</b></div>
1640
                           <div class="floatRight"><input id="button_source_datasource_longitude" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_longitude');" class="control" /></div>
1641
                        </td>
1642
                        <td>
1643
                           <div id="source_datasource_longitude" style="display:block">
1644
                              <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">
1645
                                 <tr>
1646
                                    <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>
1647
                                 </tr>
1648
                              </table>
1649
                           </div>
1650
                        </td>
1651
                     </tr>
1652
                     <tr>
1653
                        <td class="firstColumn"><b>Schema location</b></td>
1654
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
1655
                     </tr>
1656
                  </tbody>
1657
               </table>
1658
            </td>
1659
            <td class="rt_lineRight"></td>
1660
         </tr>
1661
         <tr>
1662
            <td class="rt_cornerBottomLeft"></td>
1663
            <td class="rt_lineBottom"></td>
1664
            <td class="rt_cornerBottomRight"></td>
1665
         </tr>
1666
      </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>
1667
      <table class="rt">
1668
         <tr>
1669
            <td class="rt_cornerTopLeft"></td>
1670
            <td class="rt_lineTop"></td>
1671
            <td class="rt_cornerTopRight"></td>
1672
         </tr>
1673
         <tr>
1674
            <td class="rt_lineLeft"></td>
1675
            <td class="rt_content">
1676
               <table class="component">
1677
                  <tbody>
1678
                     <tr>
1679
                        <td class="firstColumn"><b>Namespace</b></td>
1680
                        <td>http://namespace.openaire.eu/oaf</td>
1681
                     </tr>
1682
                     <tr>
1683
                        <td class="firstColumn">
1684
                           <div class="floatLeft"><b>Diagram</b></div>
1685
                           <div class="floatRight"><input id="button_diagram_datasource_description" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_description');" class="control" /></div>
1686
                        </td>
1687
                        <td class="diagram">
1688
                           <div id="diagram_datasource_description" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_description.jpeg" /></div>
1689
                        </td>
1690
                     </tr>
1691
                     <tr>
1692
                        <td class="firstColumn"><b>Type</b></td>
1693
                        <td><b>xs:string</b></td>
1694
                     </tr>
1695
                     <tr>
1696
                        <td class="firstColumn">
1697
                           <div class="floatLeft"><b>Properties</b></div>
1698
                           <div class="floatRight"><input id="button_properties_datasource_description" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_description');" class="control" /></div>
1699
                        </td>
1700
                        <td>
1701
                           <div id="properties_datasource_description" style="display:block">
1702
                              <table class="propertiesTable">
1703
                                 <tr>
1704
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
1705
                                    <td><b>simple</b></td>
1706
                                 </tr>
1707
                              </table>
1708
                           </div>
1709
                        </td>
1710
                     </tr>
1711
                     <tr>
1712
                        <td class="firstColumn">
1713
                           <div class="floatLeft"><b>Source</b></div>
1714
                           <div class="floatRight"><input id="button_source_datasource_description" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_description');" class="control" /></div>
1715
                        </td>
1716
                        <td>
1717
                           <div id="source_datasource_description" style="display:block">
1718
                              <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">
1719
                                 <tr>
1720
                                    <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>
1721
                                 </tr>
1722
                              </table>
1723
                           </div>
1724
                        </td>
1725
                     </tr>
1726
                     <tr>
1727
                        <td class="firstColumn"><b>Schema location</b></td>
1728
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
1729
                     </tr>
1730
                  </tbody>
1731
               </table>
1732
            </td>
1733
            <td class="rt_lineRight"></td>
1734
         </tr>
1735
         <tr>
1736
            <td class="rt_cornerBottomLeft"></td>
1737
            <td class="rt_lineBottom"></td>
1738
            <td class="rt_cornerBottomRight"></td>
1739
         </tr>
1740
      </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>
1741
      <table class="rt">
1742
         <tr>
1743
            <td class="rt_cornerTopLeft"></td>
1744
            <td class="rt_lineTop"></td>
1745
            <td class="rt_cornerTopRight"></td>
1746
         </tr>
1747
         <tr>
1748
            <td class="rt_lineLeft"></td>
1749
            <td class="rt_content">
1750
               <table class="component">
1751
                  <tbody>
1752
                     <tr>
1753
                        <td class="firstColumn"><b>Namespace</b></td>
1754
                        <td>http://namespace.openaire.eu/oaf</td>
1755
                     </tr>
1756
                     <tr>
1757
                        <td class="firstColumn">
1758
                           <div class="floatLeft"><b>Annotations</b></div>
1759
                           <div class="floatRight"><input id="button_annotations_datasource_subjects" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_datasource_subjects');" class="control" /></div>
1760
                        </td>
1761
                        <td>
1762
                           <div id="annotations_datasource_subjects" style="display:block">
1763
                              <div class="annotation">
1764
                                 <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">
1765
                                    <tr>
1766
                                       <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">
1767
</span></pre></td>
1768
                                    </tr>
1769
                                 </table>
1770
                              </div>
1771
                           </div>
1772
                        </td>
1773
                     </tr>
1774
                     <tr>
1775
                        <td class="firstColumn">
1776
                           <div class="floatLeft"><b>Diagram</b></div>
1777
                           <div class="floatRight"><input id="button_diagram_datasource_subjects" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_subjects');" class="control" /></div>
1778
                        </td>
1779
                        <td class="diagram">
1780
                           <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">
1781
                                 <area alt="oaf-common-1_0_xsd.tmp#typedElementType_type" href="oaf-common-1_0_xsd.html#typedElementType_type" coords="152,157,212,181" />
1782
                                 <area alt="oaf-common-1_0_xsd.tmp#optionalInferenceAttrGroup" href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup" coords="155,194,359,220" />
1783
                                 <area alt="oaf-common-1_0_xsd.tmp#typedElementType" href="oaf-common-1_0_xsd.html#typedElementType" coords="127,3,276,25" /></map></div>
1784
                        </td>
1785
                     </tr>
1786
                     <tr>
1787
                        <td class="firstColumn"><b>Type</b></td>
1788
                        <td><b><a href="oaf-common-1_0_xsd.html#typedElementType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">typedElementType</a></b></td>
1789
                     </tr>
1790
                     <tr>
1791
                        <td class="firstColumn">
1792
                           <div class="floatLeft"><b>Properties</b></div>
1793
                           <div class="floatRight"><input id="button_properties_datasource_subjects" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_subjects');" class="control" /></div>
1794
                        </td>
1795
                        <td>
1796
                           <div id="properties_datasource_subjects" style="display:block">
1797
                              <table class="propertiesTable">
1798
                                 <tr>
1799
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
1800
                                    <td><b>complex</b></td>
1801
                                 </tr>
1802
                              </table>
1803
                           </div>
1804
                        </td>
1805
                     </tr>
1806
                     <tr>
1807
                        <td class="firstColumn">
1808
                           <div class="floatLeft"><b>Attributes</b></div>
1809
                           <div class="floatRight"><input id="button_attributes_datasource_subjects" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_datasource_subjects');" class="control" /></div>
1810
                        </td>
1811
                        <td>
1812
                           <div id="attributes_datasource_subjects" style="display:block">
1813
                              <table class="attributesTable">
1814
                                 <thead>
1815
                                    <tr>
1816
                                       <th>QName</th>
1817
                                       <th width="10%">Type</th>
1818
                                       <th width="5%">Use</th>
1819
                                       <th>Annotation</th>
1820
                                    </tr>
1821
                                 </thead>
1822
                                 <tr>
1823
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferenceprovenance</a></b></td>
1824
                                    <td><b>xs:string</b></td>
1825
                                    <td>optional</td>
1826
                                    <td>
1827
                                       <div class="annotation">
1828
                                          <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">
1829
                                             <tr>
1830
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
1831
                                             </tr>
1832
                                          </table>
1833
                                       </div>
1834
                                    </td>
1835
                                 </tr>
1836
                                 <tr>
1837
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferred</a></b></td>
1838
                                    <td><b>xs:boolean</b></td>
1839
                                    <td>optional</td>
1840
                                    <td>
1841
                                       <div class="annotation">
1842
                                          <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">
1843
                                             <tr>
1844
                                                <td width="100%"><pre><span class="tT">True if this information has been inferred by the automatic</span><span class="tI">
1845
</span><span class="tT">inference algorithms run by OpenAIRE.</span></pre></td>
1846
                                             </tr>
1847
                                          </table>
1848
                                       </div>
1849
                                    </td>
1850
                                 </tr>
1851
                                 <tr>
1852
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">trust</a></b></td>
1853
                                    <td><b>xs:string</b></td>
1854
                                    <td>optional</td>
1855
                                    <td>
1856
                                       <div class="annotation">
1857
                                          <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">
1858
                                             <tr>
1859
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range [0,1]. More the</span><span class="tI">
1860
</span><span class="tT">value, more trustworthy is the information.</span></pre></td>
1861
                                             </tr>
1862
                                          </table>
1863
                                       </div>
1864
                                    </td>
1865
                                 </tr>
1866
                                 <tr>
1867
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#typedElementType_type" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">type</a></b></td>
1868
                                    <td></td>
1869
                                    <td>required</td>
1870
                                    <td>
1871
                                       <div class="annotation"></div>
1872
                                    </td>
1873
                                 </tr>
1874
                              </table>
1875
                           </div>
1876
                        </td>
1877
                     </tr>
1878
                     <tr>
1879
                        <td class="firstColumn">
1880
                           <div class="floatLeft"><b>Source</b></div>
1881
                           <div class="floatRight"><input id="button_source_datasource_subjects" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_subjects');" class="control" /></div>
1882
                        </td>
1883
                        <td>
1884
                           <div id="source_datasource_subjects" style="display:block">
1885
                              <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">
1886
                                 <tr>
1887
                                    <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">"typedElementType"</span><span class="tEl">&gt;</span><span class="tI">
1888
  </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
1889
    </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">
1890
      </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">
1891
    </span><span class="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
1892
  </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
1893
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
1894
                                 </tr>
1895
                              </table>
1896
                           </div>
1897
                        </td>
1898
                     </tr>
1899
                     <tr>
1900
                        <td class="firstColumn"><b>Schema location</b></td>
1901
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
1902
                     </tr>
1903
                  </tbody>
1904
               </table>
1905
            </td>
1906
            <td class="rt_lineRight"></td>
1907
         </tr>
1908
         <tr>
1909
            <td class="rt_cornerBottomLeft"></td>
1910
            <td class="rt_lineBottom"></td>
1911
            <td class="rt_cornerBottomRight"></td>
1912
         </tr>
1913
      </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>
1914
      <table class="rt">
1915
         <tr>
1916
            <td class="rt_cornerTopLeft"></td>
1917
            <td class="rt_lineTop"></td>
1918
            <td class="rt_cornerTopRight"></td>
1919
         </tr>
1920
         <tr>
1921
            <td class="rt_lineLeft"></td>
1922
            <td class="rt_content">
1923
               <table class="component">
1924
                  <tbody>
1925
                     <tr>
1926
                        <td class="firstColumn"><b>Namespace</b></td>
1927
                        <td>http://namespace.openaire.eu/oaf</td>
1928
                     </tr>
1929
                     <tr>
1930
                        <td class="firstColumn">
1931
                           <div class="floatLeft"><b>Diagram</b></div>
1932
                           <div class="floatRight"><input id="button_diagram_datasource_originalId" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_originalId');" class="control" /></div>
1933
                        </td>
1934
                        <td class="diagram">
1935
                           <div id="diagram_datasource_originalId" style="display:block"><img alt="Diagram" border="0" src="img/oaf-datasource-1_0_xsd_Element_originalId.jpeg" /></div>
1936
                        </td>
1937
                     </tr>
1938
                     <tr>
1939
                        <td class="firstColumn"><b>Type</b></td>
1940
                        <td><b>xs:string</b></td>
1941
                     </tr>
1942
                     <tr>
1943
                        <td class="firstColumn">
1944
                           <div class="floatLeft"><b>Properties</b></div>
1945
                           <div class="floatRight"><input id="button_properties_datasource_originalId" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_originalId');" class="control" /></div>
1946
                        </td>
1947
                        <td>
1948
                           <div id="properties_datasource_originalId" style="display:block">
1949
                              <table class="propertiesTable">
1950
                                 <tr>
1951
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
1952
                                    <td><b>simple</b></td>
1953
                                 </tr>
1954
                              </table>
1955
                           </div>
1956
                        </td>
1957
                     </tr>
1958
                     <tr>
1959
                        <td class="firstColumn">
1960
                           <div class="floatLeft"><b>Source</b></div>
1961
                           <div class="floatRight"><input id="button_source_datasource_originalId" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_originalId');" class="control" /></div>
1962
                        </td>
1963
                        <td>
1964
                           <div id="source_datasource_originalId" style="display:block">
1965
                              <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">
1966
                                 <tr>
1967
                                    <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>
1968
                                 </tr>
1969
                              </table>
1970
                           </div>
1971
                        </td>
1972
                     </tr>
1973
                     <tr>
1974
                        <td class="firstColumn"><b>Schema location</b></td>
1975
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
1976
                     </tr>
1977
                  </tbody>
1978
               </table>
1979
            </td>
1980
            <td class="rt_lineRight"></td>
1981
         </tr>
1982
         <tr>
1983
            <td class="rt_cornerBottomLeft"></td>
1984
            <td class="rt_lineBottom"></td>
1985
            <td class="rt_cornerBottomRight"></td>
1986
         </tr>
1987
      </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>
1988
      <table class="rt">
1989
         <tr>
1990
            <td class="rt_cornerTopLeft"></td>
1991
            <td class="rt_lineTop"></td>
1992
            <td class="rt_cornerTopRight"></td>
1993
         </tr>
1994
         <tr>
1995
            <td class="rt_lineLeft"></td>
1996
            <td class="rt_content">
1997
               <table class="component">
1998
                  <tbody>
1999
                     <tr>
2000
                        <td class="firstColumn"><b>Namespace</b></td>
2001
                        <td>http://namespace.openaire.eu/oaf</td>
2002
                     </tr>
2003
                     <tr>
2004
                        <td class="firstColumn">
2005
                           <div class="floatLeft"><b>Annotations</b></div>
2006
                           <div class="floatRight"><input id="button_annotations_datasource_collectedfrom" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_datasource_collectedfrom');" class="control" /></div>
2007
                        </td>
2008
                        <td>
2009
                           <div id="annotations_datasource_collectedfrom" style="display:block">
2010
                              <div class="annotation">
2011
                                 <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">
2012
                                    <tr>
2013
                                       <td width="100%"><pre><span class="tT">Identifier and name of the datasource from which</span><span class="tI">
2014
</span><span class="tT">this datasource has</span><span class="tI">
2015
</span><span class="tT">been collected from.</span></pre></td>
2016
                                    </tr>
2017
                                 </table>
2018
                              </div>
2019
                           </div>
2020
                        </td>
2021
                     </tr>
2022
                     <tr>
2023
                        <td class="firstColumn">
2024
                           <div class="floatLeft"><b>Diagram</b></div>
2025
                           <div class="floatRight"><input id="button_diagram_datasource_collectedfrom" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_collectedfrom');" class="control" /></div>
2026
                        </td>
2027
                        <td class="diagram">
2028
                           <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">
2029
                                 <area alt="oaf-common-1_0_xsd.tmp#namedIdElementType_id" href="oaf-common-1_0_xsd.html#namedIdElementType_id" coords="181,78,238,102" />
2030
                                 <area alt="oaf-common-1_0_xsd.tmp#namedIdElementType_name" href="oaf-common-1_0_xsd.html#namedIdElementType_name" coords="181,112,247,136" />
2031
                                 <area alt="oaf-common-1_0_xsd.tmp#optionalInferenceAttrGroup" href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup" coords="184,149,388,175" />
2032
                                 <area alt="oaf-common-1_0_xsd.tmp#namedIdElementType" href="oaf-common-1_0_xsd.html#namedIdElementType" coords="156,3,321,25" /></map></div>
2033
                        </td>
2034
                     </tr>
2035
                     <tr>
2036
                        <td class="firstColumn"><b>Type</b></td>
2037
                        <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>
2038
                     </tr>
2039
                     <tr>
2040
                        <td class="firstColumn">
2041
                           <div class="floatLeft"><b>Properties</b></div>
2042
                           <div class="floatRight"><input id="button_properties_datasource_collectedfrom" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_collectedfrom');" class="control" /></div>
2043
                        </td>
2044
                        <td>
2045
                           <div id="properties_datasource_collectedfrom" style="display:block">
2046
                              <table class="propertiesTable">
2047
                                 <tr>
2048
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
2049
                                    <td><b>complex</b></td>
2050
                                 </tr>
2051
                              </table>
2052
                           </div>
2053
                        </td>
2054
                     </tr>
2055
                     <tr>
2056
                        <td class="firstColumn">
2057
                           <div class="floatLeft"><b>Attributes</b></div>
2058
                           <div class="floatRight"><input id="button_attributes_datasource_collectedfrom" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_datasource_collectedfrom');" class="control" /></div>
2059
                        </td>
2060
                        <td>
2061
                           <div id="attributes_datasource_collectedfrom" style="display:block">
2062
                              <table class="attributesTable">
2063
                                 <thead>
2064
                                    <tr>
2065
                                       <th>QName</th>
2066
                                       <th width="10%">Type</th>
2067
                                       <th width="5%">Use</th>
2068
                                       <th>Annotation</th>
2069
                                    </tr>
2070
                                 </thead>
2071
                                 <tr>
2072
                                    <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>
2073
                                    <td></td>
2074
                                    <td>required</td>
2075
                                    <td>
2076
                                       <div class="annotation"></div>
2077
                                    </td>
2078
                                 </tr>
2079
                                 <tr>
2080
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferenceprovenance</a></b></td>
2081
                                    <td><b>xs:string</b></td>
2082
                                    <td>optional</td>
2083
                                    <td>
2084
                                       <div class="annotation">
2085
                                          <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">
2086
                                             <tr>
2087
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
2088
                                             </tr>
2089
                                          </table>
2090
                                       </div>
2091
                                    </td>
2092
                                 </tr>
2093
                                 <tr>
2094
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferred</a></b></td>
2095
                                    <td><b>xs:boolean</b></td>
2096
                                    <td>optional</td>
2097
                                    <td>
2098
                                       <div class="annotation">
2099
                                          <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">
2100
                                             <tr>
2101
                                                <td width="100%"><pre><span class="tT">True if this information has been inferred by the automatic</span><span class="tI">
2102
</span><span class="tT">inference algorithms run by OpenAIRE.</span></pre></td>
2103
                                             </tr>
2104
                                          </table>
2105
                                       </div>
2106
                                    </td>
2107
                                 </tr>
2108
                                 <tr>
2109
                                    <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>
2110
                                    <td></td>
2111
                                    <td>required</td>
2112
                                    <td>
2113
                                       <div class="annotation"></div>
2114
                                    </td>
2115
                                 </tr>
2116
                                 <tr>
2117
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">trust</a></b></td>
2118
                                    <td><b>xs:string</b></td>
2119
                                    <td>optional</td>
2120
                                    <td>
2121
                                       <div class="annotation">
2122
                                          <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">
2123
                                             <tr>
2124
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range [0,1]. More the</span><span class="tI">
2125
</span><span class="tT">value, more trustworthy is the information.</span></pre></td>
2126
                                             </tr>
2127
                                          </table>
2128
                                       </div>
2129
                                    </td>
2130
                                 </tr>
2131
                              </table>
2132
                           </div>
2133
                        </td>
2134
                     </tr>
2135
                     <tr>
2136
                        <td class="firstColumn">
2137
                           <div class="floatLeft"><b>Source</b></div>
2138
                           <div class="floatRight"><input id="button_source_datasource_collectedfrom" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_collectedfrom');" class="control" /></div>
2139
                        </td>
2140
                        <td>
2141
                           <div id="source_datasource_collectedfrom" style="display:block">
2142
                              <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">
2143
                                 <tr>
2144
                                    <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">
2145
  </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
2146
    </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">
2147
  </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
2148
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
2149
                                 </tr>
2150
                              </table>
2151
                           </div>
2152
                        </td>
2153
                     </tr>
2154
                     <tr>
2155
                        <td class="firstColumn"><b>Schema location</b></td>
2156
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
2157
                     </tr>
2158
                  </tbody>
2159
               </table>
2160
            </td>
2161
            <td class="rt_lineRight"></td>
2162
         </tr>
2163
         <tr>
2164
            <td class="rt_cornerBottomLeft"></td>
2165
            <td class="rt_lineBottom"></td>
2166
            <td class="rt_cornerBottomRight"></td>
2167
         </tr>
2168
      </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>
2169
      <table class="rt">
2170
         <tr>
2171
            <td class="rt_cornerTopLeft"></td>
2172
            <td class="rt_lineTop"></td>
2173
            <td class="rt_cornerTopRight"></td>
2174
         </tr>
2175
         <tr>
2176
            <td class="rt_lineLeft"></td>
2177
            <td class="rt_content">
2178
               <table class="component">
2179
                  <tbody>
2180
                     <tr>
2181
                        <td class="firstColumn"><b>Namespace</b></td>
2182
                        <td>http://namespace.openaire.eu/oaf</td>
2183
                     </tr>
2184
                     <tr>
2185
                        <td class="firstColumn">
2186
                           <div class="floatLeft"><b>Diagram</b></div>
2187
                           <div class="floatRight"><input id="button_diagram_datasource_pid" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_pid');" class="control" /></div>
2188
                        </td>
2189
                        <td class="diagram">
2190
                           <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">
2191
                                 <area alt="oaf-common-1_0_xsd.tmp#typedElementType_type" href="oaf-common-1_0_xsd.html#typedElementType_type" coords="107,157,167,181" />
2192
                                 <area alt="oaf-common-1_0_xsd.tmp#optionalInferenceAttrGroup" href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup" coords="110,194,314,220" />
2193
                                 <area alt="oaf-common-1_0_xsd.tmp#typedElementType" href="oaf-common-1_0_xsd.html#typedElementType" coords="82,3,231,25" /></map></div>
2194
                        </td>
2195
                     </tr>
2196
                     <tr>
2197
                        <td class="firstColumn"><b>Type</b></td>
2198
                        <td><b><a href="oaf-common-1_0_xsd.html#typedElementType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">typedElementType</a></b></td>
2199
                     </tr>
2200
                     <tr>
2201
                        <td class="firstColumn">
2202
                           <div class="floatLeft"><b>Properties</b></div>
2203
                           <div class="floatRight"><input id="button_properties_datasource_pid" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_pid');" class="control" /></div>
2204
                        </td>
2205
                        <td>
2206
                           <div id="properties_datasource_pid" style="display:block">
2207
                              <table class="propertiesTable">
2208
                                 <tr>
2209
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
2210
                                    <td><b>complex</b></td>
2211
                                 </tr>
2212
                              </table>
2213
                           </div>
2214
                        </td>
2215
                     </tr>
2216
                     <tr>
2217
                        <td class="firstColumn">
2218
                           <div class="floatLeft"><b>Attributes</b></div>
2219
                           <div class="floatRight"><input id="button_attributes_datasource_pid" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_datasource_pid');" class="control" /></div>
2220
                        </td>
2221
                        <td>
2222
                           <div id="attributes_datasource_pid" style="display:block">
2223
                              <table class="attributesTable">
2224
                                 <thead>
2225
                                    <tr>
2226
                                       <th>QName</th>
2227
                                       <th width="10%">Type</th>
2228
                                       <th width="5%">Use</th>
2229
                                       <th>Annotation</th>
2230
                                    </tr>
2231
                                 </thead>
2232
                                 <tr>
2233
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferenceprovenance</a></b></td>
2234
                                    <td><b>xs:string</b></td>
2235
                                    <td>optional</td>
2236
                                    <td>
2237
                                       <div class="annotation">
2238
                                          <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">
2239
                                             <tr>
2240
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
2241
                                             </tr>
2242
                                          </table>
2243
                                       </div>
2244
                                    </td>
2245
                                 </tr>
2246
                                 <tr>
2247
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferred</a></b></td>
2248
                                    <td><b>xs:boolean</b></td>
2249
                                    <td>optional</td>
2250
                                    <td>
2251
                                       <div class="annotation">
2252
                                          <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">
2253
                                             <tr>
2254
                                                <td width="100%"><pre><span class="tT">True if this information has been inferred by the automatic</span><span class="tI">
2255
</span><span class="tT">inference algorithms run by OpenAIRE.</span></pre></td>
2256
                                             </tr>
2257
                                          </table>
2258
                                       </div>
2259
                                    </td>
2260
                                 </tr>
2261
                                 <tr>
2262
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">trust</a></b></td>
2263
                                    <td><b>xs:string</b></td>
2264
                                    <td>optional</td>
2265
                                    <td>
2266
                                       <div class="annotation">
2267
                                          <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">
2268
                                             <tr>
2269
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range [0,1]. More the</span><span class="tI">
2270
</span><span class="tT">value, more trustworthy is the information.</span></pre></td>
2271
                                             </tr>
2272
                                          </table>
2273
                                       </div>
2274
                                    </td>
2275
                                 </tr>
2276
                                 <tr>
2277
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#typedElementType_type" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">type</a></b></td>
2278
                                    <td></td>
2279
                                    <td>required</td>
2280
                                    <td>
2281
                                       <div class="annotation"></div>
2282
                                    </td>
2283
                                 </tr>
2284
                              </table>
2285
                           </div>
2286
                        </td>
2287
                     </tr>
2288
                     <tr>
2289
                        <td class="firstColumn">
2290
                           <div class="floatLeft"><b>Source</b></div>
2291
                           <div class="floatRight"><input id="button_source_datasource_pid" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_pid');" class="control" /></div>
2292
                        </td>
2293
                        <td>
2294
                           <div id="source_datasource_pid" style="display:block">
2295
                              <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">
2296
                                 <tr>
2297
                                    <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">"typedElementType"</span><span class="tEl">/&gt;</span></pre></td>
2298
                                 </tr>
2299
                              </table>
2300
                           </div>
2301
                        </td>
2302
                     </tr>
2303
                     <tr>
2304
                        <td class="firstColumn"><b>Schema location</b></td>
2305
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
2306
                     </tr>
2307
                  </tbody>
2308
               </table>
2309
            </td>
2310
            <td class="rt_lineRight"></td>
2311
         </tr>
2312
         <tr>
2313
            <td class="rt_cornerBottomLeft"></td>
2314
            <td class="rt_lineBottom"></td>
2315
            <td class="rt_cornerBottomRight"></td>
2316
         </tr>
2317
      </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>
2318
      <table class="rt">
2319
         <tr>
2320
            <td class="rt_cornerTopLeft"></td>
2321
            <td class="rt_lineTop"></td>
2322
            <td class="rt_cornerTopRight"></td>
2323
         </tr>
2324
         <tr>
2325
            <td class="rt_lineLeft"></td>
2326
            <td class="rt_content">
2327
               <table class="component">
2328
                  <tbody>
2329
                     <tr>
2330
                        <td class="firstColumn"><b>Namespace</b></td>
2331
                        <td>http://namespace.openaire.eu/oaf</td>
2332
                     </tr>
2333
                     <tr>
2334
                        <td class="firstColumn">
2335
                           <div class="floatLeft"><b>Annotations</b></div>
2336
                           <div class="floatRight"><input id="button_annotations_datasource_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_datasource_rels');" class="control" /></div>
2337
                        </td>
2338
                        <td>
2339
                           <div id="annotations_datasource_rels" style="display:block">
2340
                              <div class="annotation">
2341
                                 <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">
2342
                                    <tr>
2343
                                       <td width="100%"><pre><span class="tT">Relationships to other entities.</span></pre></td>
2344
                                    </tr>
2345
                                 </table>
2346
                              </div>
2347
                           </div>
2348
                        </td>
2349
                     </tr>
2350
                     <tr>
2351
                        <td class="firstColumn">
2352
                           <div class="floatLeft"><b>Diagram</b></div>
2353
                           <div class="floatRight"><input id="button_diagram_datasource_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_datasource_rels');" class="control" /></div>
2354
                        </td>
2355
                        <td class="diagram">
2356
                           <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">
2357
                                 <area alt="oaf-common-1_0_xsd.tmp#relsType_rel" href="oaf-common-1_0_xsd.html#relsType_rel" coords="205,44,256,68" />
2358
                                 <area alt="oaf-common-1_0_xsd.tmp#relsType" href="oaf-common-1_0_xsd.html#relsType" coords="123,3,220,25" /></map></div>
2359
                        </td>
2360
                     </tr>
2361
                     <tr>
2362
                        <td class="firstColumn"><b>Type</b></td>
2363
                        <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>
2364
                     </tr>
2365
                     <tr>
2366
                        <td class="firstColumn">
2367
                           <div class="floatLeft"><b>Properties</b></div>
2368
                           <div class="floatRight"><input id="button_properties_datasource_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_datasource_rels');" class="control" /></div>
2369
                        </td>
2370
                        <td>
2371
                           <div id="properties_datasource_rels" style="display:block">
2372
                              <table class="propertiesTable">
2373
                                 <tr>
2374
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
2375
                                    <td><b>complex</b></td>
2376
                                 </tr>
2377
                              </table>
2378
                           </div>
2379
                        </td>
2380
                     </tr>
2381
                     <tr>
2382
                        <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>
2383
                        </td>
2384
                        <td>
2385
                           <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>
2386
                        </td>
2387
                     </tr>
2388
                     <tr>
2389
                        <td class="firstColumn"><b>Children</b></td>
2390
                        <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>
2391
                     </tr>
2392
                     <tr>
2393
                        <td class="firstColumn">
2394
                           <div class="floatLeft"><b>Instance</b></div>
2395
                           <div class="floatRight"><input id="button_instance_datasource_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_datasource_rels');" class="control" /></div>
2396
                        </td>
2397
                        <td>
2398
                           <div id="instance_datasource_rels" style="display:block">
2399
                              <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">
2400
                                 <tr>
2401
                                    <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">
2402
  </span><span class="tEl">&lt;rel</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">provenanceaction=</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">
2403
</span><span class="tEl">&lt;/rels&gt;</span></pre></td>
2404
                                 </tr>
2405
                              </table>
2406
                           </div>
2407
                        </td>
2408
                     </tr>
2409
                     <tr>
2410
                        <td class="firstColumn">
2411
                           <div class="floatLeft"><b>Source</b></div>
2412
                           <div class="floatRight"><input id="button_source_datasource_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('source_datasource_rels');" class="control" /></div>
2413
                        </td>
2414
                        <td>
2415
                           <div id="source_datasource_rels" style="display:block">
2416
                              <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">
2417
                                 <tr>
2418
                                    <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">
2419
  </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
2420
    </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">
2421
  </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
2422
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
2423
                                 </tr>
2424
                              </table>
2425
                           </div>
2426
                        </td>
2427
                     </tr>
2428
                     <tr>
2429
                        <td class="firstColumn"><b>Schema location</b></td>
2430
                        <td>https://www.openaire.eu/schema/1.0/oaf-datasource-1.0.xsd</td>
2431
                     </tr>
2432
                  </tbody>
2433
               </table>
2434
            </td>
2435
            <td class="rt_lineRight"></td>
2436
         </tr>
2437
         <tr>
2438
            <td class="rt_cornerBottomLeft"></td>
2439
            <td class="rt_lineBottom"></td>
2440
            <td class="rt_cornerBottomRight"></td>
2441
         </tr>
2442
      </table>
2443
      <div class="footer">
2444
         <hr />
2445
         <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.
2446
         </div>
2447
      </div><script type="text/javascript">
2448
         <!--
2449
                     // The namespace is the selected option in the TOC combo.
2450
                    
2451
                     // Floats the toolbar.
2452
                     var globalControls = getElementObject("global_controls"); 
2453
                     
2454
                     if(globalControls != null){
2455
	                     var browser=navigator.appName;
2456
						 var version = parseFloat(navigator.appVersion.split('MSIE')[1]);
2457
						 
2458
						 var IE6 = false;
2459
						 if ((browser=="Microsoft Internet Explorer") && (version < 7)){
2460
						 	IE6 = true;
2461
						 }
2462
	
2463
	                     //alert (IE6 + " |V| " + version);
2464
	                     
2465
	                     if(IE6){
2466
	                     	// On IE 6 the 'fixed' property is not supported. We must use javascript. 
2467
	                         globalControls.style.position='absolute';                         
2468
	                         // The global controls will do not exist in the TOC frame, when chunking.
2469
	                         findAndFloat("global_controls", 225, 30);    
2470
	                     } else {
2471
	                      	  globalControls.style.position='fixed';                     	
2472
	                     }
2473
	                     
2474
	                     globalControls.style.right='0';                       
2475
                     }
2476
                //--></script></body>
2477
</html>
(8-8/14)