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-person-0.2.xsd</title>
7
      <link rel="stylesheet" href="docHtml.css" type="text/css" /><script type="text/javascript">
8
         <!--
9
        var propertiesBoxes= new Array('properties_oaf-person-0.2.xsd', 
10
				'properties_person', 
11
				'properties_person_firstname', 
12
				'properties_person_secondnames', 
13
				'properties_person_fullname', 
14
				'properties_person_fax', 
15
				'properties_person_email', 
16
				'properties_person_phone', 
17
				'properties_person_nationality', 
18
				'properties_person_originalId', 
19
				'properties_person_collectedfrom', 
20
				'properties_person_pid', 
21
				'properties_person_datainfo', 
22
				'properties_person_rels', 
23
				'properties_person_children');
24

    
25
        
26
        var usedByBoxes= new Array('usedBy_person');
27

    
28
        var sourceBoxes= new Array('source_person', 
29
				'source_person_firstname', 
30
				'source_person_secondnames', 
31
				'source_person_fullname', 
32
				'source_person_fax', 
33
				'source_person_email', 
34
				'source_person_phone', 
35
				'source_person_nationality', 
36
				'source_person_originalId', 
37
				'source_person_collectedfrom', 
38
				'source_person_pid', 
39
				'source_person_datainfo', 
40
				'source_person_rels', 
41
				'source_person_children');
42

    
43
        var instanceBoxes= new Array('instance_person', 
44
				'instance_person_datainfo', 
45
				'instance_person_rels');
46

    
47
        var diagramBoxes= new Array('diagram_person', 
48
				'diagram_person_firstname', 
49
				'diagram_person_secondnames', 
50
				'diagram_person_fullname', 
51
				'diagram_person_fax', 
52
				'diagram_person_email', 
53
				'diagram_person_phone', 
54
				'diagram_person_nationality', 
55
				'diagram_person_originalId', 
56
				'diagram_person_collectedfrom', 
57
				'diagram_person_pid', 
58
				'diagram_person_datainfo', 
59
				'diagram_person_rels', 
60
				'diagram_person_children');
61

    
62
        var annotationBoxes= new Array('annotations_oaf-person-0.2.xsd', 
63
				'annotations_person_nationality', 
64
				'annotations_person_collectedfrom', 
65
				'annotations_person_rels');
66

    
67
        var attributesBoxes= new Array('attributes_person_firstname', 
68
				'attributes_person_secondnames', 
69
				'attributes_person_fullname', 
70
				'attributes_person_fax', 
71
				'attributes_person_email', 
72
				'attributes_person_phone', 
73
				'attributes_person_nationality', 
74
				'attributes_person_originalId', 
75
				'attributes_person_collectedfrom', 
76
				'attributes_person_pid');
77

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

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

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

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

    
307
    --></script></head>
308
   <body>
309
      <div id="global_controls" class="globalControls" style="position:absolute;right:0;">
310
         <table class="rt">
311
            <tr>
312
               <td class="rt_cornerTopLeft"></td>
313
               <td class="rt_lineTop"></td>
314
               <td class="rt_cornerTopRight"></td>
315
            </tr>
316
            <tr>
317
               <td class="rt_lineLeft"></td>
318
               <td class="rt_content">
319
                  <h3>Showing:</h3>
320
                  <table>
321
                     <tr>
322
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, annotationBoxes);" class="control" /></span><span class="globalControlName">Annotations</span></td>
323
                     </tr>
324
                     <tr>
325
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, attributesBoxes);" class="control" /></span><span class="globalControlName">Attributes </span></td>
326
                     </tr>
327
                     <tr>
328
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, diagramBoxes);" class="control" /></span><span class="globalControlName">Diagrams</span></td>
329
                     </tr>
330
                     <tr>
331
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, instanceBoxes);" class="control" /></span><span class="globalControlName">Instances</span></td>
332
                     </tr>
333
                     <tr>
334
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, propertiesBoxes);" class="control" /></span><span class="globalControlName">Properties </span></td>
335
                     </tr>
336
                     <tr>
337
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, sourceBoxes);" class="control" /></span><span class="globalControlName">Source</span></td>
338
                     </tr>
339
                     <tr>
340
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, usedByBoxes);" class="control" /></span><span class="globalControlName">Used by </span></td>
341
                     </tr>
342
                  </table>
343
                  <div align="right"><span><input type="button" onclick="getElementObject('global_controls').style.display = 'none';" value="Close" /></span></div>
344
               </td>
345
               <td class="rt_lineRight"></td>
346
            </tr>
347
            <tr>
348
               <td class="rt_cornerBottomLeft"></td>
349
               <td class="rt_lineBottom"></td>
350
               <td class="rt_cornerBottomRight"></td>
351
            </tr>
352
         </table>
353
      </div><a id="oaf-person-0.2.xsd"></a><div class="componentTitle">Included schema <span class="qname">oaf-person-0.2.xsd</span></div>
354
      <table class="rt">
355
         <tr>
356
            <td class="rt_cornerTopLeft"></td>
357
            <td class="rt_lineTop"></td>
358
            <td class="rt_cornerTopRight"></td>
359
         </tr>
360
         <tr>
361
            <td class="rt_lineLeft"></td>
362
            <td class="rt_content">
363
               <table class="component">
364
                  <tbody>
365
                     <tr>
366
                        <td class="firstColumn"><b>Namespace</b></td>
367
                        <td>http://namespace.openaire.eu/oaf</td>
368
                     </tr>
369
                     <tr>
370
                        <td class="firstColumn">
371
                           <div class="floatLeft"><b>Annotations</b></div>
372
                           <div class="floatRight"><input id="button_annotations_oaf-person-0.2.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_oaf-person-0.2.xsd');" class="control" /></div>
373
                        </td>
374
                        <td>
375
                           <div id="annotations_oaf-person-0.2.xsd" style="display:block">
376
                              <div class="annotation">
377
                                 <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">
378
                                    <tr>
379
                                       <td width="100%"><pre><span class="tT">This schema describes elements and properties of</span><span class="tI">
380
</span><span class="tT">OpenAIRE+ entities of type</span><span class="tI">
381
</span><span class="tT">person</span></pre></td>
382
                                    </tr>
383
                                 </table>
384
                              </div>
385
                           </div>
386
                        </td>
387
                     </tr>
388
                     <tr>
389
                        <td class="firstColumn">
390
                           <div class="floatLeft"><b>Properties</b></div>
391
                           <div class="floatRight"><input id="button_properties_oaf-person-0.2.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_oaf-person-0.2.xsd');" class="control" /></div>
392
                        </td>
393
                        <td>
394
                           <div id="properties_oaf-person-0.2.xsd" style="display:block">
395
                              <table class="propertiesTable">
396
                                 <tr>
397
                                    <td class="firstColumn">attribute form default:
398
                                       
399
                                    </td>
400
                                    <td><b>unqualified</b></td>
401
                                 </tr>
402
                                 <tr>
403
                                    <td class="firstColumn">element form default:
404
                                       
405
                                    </td>
406
                                    <td><b>unqualified</b></td>
407
                                 </tr>
408
                              </table>
409
                           </div>
410
                        </td>
411
                     </tr>
412
                     <tr>
413
                        <td class="firstColumn"><b>Schema location</b></td>
414
                        <td>http://www.openaire.eu/schema/0.2/oaf-person-0.2.xsd</td>
415
                     </tr>
416
                  </tbody>
417
               </table>
418
            </td>
419
            <td class="rt_lineRight"></td>
420
         </tr>
421
         <tr>
422
            <td class="rt_cornerBottomLeft"></td>
423
            <td class="rt_lineBottom"></td>
424
            <td class="rt_cornerBottomRight"></td>
425
         </tr>
426
      </table><a id="person"></a><div class="componentTitle">Element <span class="qname">person</span></div>
427
      <table class="rt">
428
         <tr>
429
            <td class="rt_cornerTopLeft"></td>
430
            <td class="rt_lineTop"></td>
431
            <td class="rt_cornerTopRight"></td>
432
         </tr>
433
         <tr>
434
            <td class="rt_lineLeft"></td>
435
            <td class="rt_content">
436
               <table class="component">
437
                  <tbody>
438
                     <tr>
439
                        <td class="firstColumn"><b>Namespace</b></td>
440
                        <td>http://namespace.openaire.eu/oaf</td>
441
                     </tr>
442
                     <tr>
443
                        <td class="firstColumn">
444
                           <div class="floatLeft"><b>Diagram</b></div>
445
                           <div class="floatRight"><input id="button_diagram_person" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_person');" class="control" /></div>
446
                        </td>
447
                        <td class="diagram">
448
                           <div id="diagram_person" style="display:block"><img alt="Diagram" border="0" src="img/oaf-person-0_2_xsd_Element_person.jpeg" usemap="#oaf-person-0_2_xsd_Element_person" /><map name="oaf-person-0_2_xsd_Element_person" id="oaf-person-0_2_xsd_Element_person">
449
                                 <area alt="oaf-person-0_2_xsd.tmp#person_firstname" href="oaf-person-0_2_xsd.html#person_firstname" coords="210,2,292,26" />
450
                                 <area alt="oaf-person-0_2_xsd.tmp#person_secondnames" href="oaf-person-0_2_xsd.html#person_secondnames" coords="210,36,315,60" />
451
                                 <area alt="oaf-person-0_2_xsd.tmp#person_fullname" href="oaf-person-0_2_xsd.html#person_fullname" coords="210,70,287,94" />
452
                                 <area alt="oaf-person-0_2_xsd.tmp#person_fax" href="oaf-person-0_2_xsd.html#person_fax" coords="210,104,265,128" />
453
                                 <area alt="oaf-person-0_2_xsd.tmp#person_email" href="oaf-person-0_2_xsd.html#person_email" coords="210,138,269,162" />
454
                                 <area alt="oaf-person-0_2_xsd.tmp#person_phone" href="oaf-person-0_2_xsd.html#person_phone" coords="210,172,275,196" />
455
                                 <area alt="oaf-person-0_2_xsd.tmp#person_nationality" href="oaf-person-0_2_xsd.html#person_nationality" coords="210,206,297,230" />
456
                                 <area alt="oaf-person-0_2_xsd.tmp#person_originalId" href="oaf-person-0_2_xsd.html#person_originalId" coords="210,283,292,307" />
457
                                 <area alt="oaf-person-0_2_xsd.tmp#person_collectedfrom" href="oaf-person-0_2_xsd.html#person_collectedfrom" coords="210,317,315,341" />
458
                                 <area alt="oaf-person-0_2_xsd.tmp#person_pid" href="oaf-person-0_2_xsd.html#person_pid" coords="210,394,265,418" />
459
                                 <area alt="oaf-person-0_2_xsd.tmp#person_datainfo" href="oaf-person-0_2_xsd.html#person_datainfo" coords="210,428,285,452" />
460
                                 <area alt="oaf-person-0_2_xsd.tmp#person_rels" href="oaf-person-0_2_xsd.html#person_rels" coords="210,462,265,486" />
461
                                 <area alt="oaf-person-0_2_xsd.tmp#person_children" href="oaf-person-0_2_xsd.html#person_children" coords="210,526,274,550" /></map></div>
462
                        </td>
463
                     </tr>
464
                     <tr>
465
                        <td class="firstColumn">
466
                           <div class="floatLeft"><b>Properties</b></div>
467
                           <div class="floatRight"><input id="button_properties_person" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_person');" class="control" /></div>
468
                        </td>
469
                        <td>
470
                           <div id="properties_person" style="display:block">
471
                              <table class="propertiesTable">
472
                                 <tr>
473
                                    <td class="firstColumn">content:
474
                                       
475
                                    </td>
476
                                    <td><b>complex</b></td>
477
                                 </tr>
478
                              </table>
479
                           </div>
480
                        </td>
481
                     </tr>
482
                     <tr>
483
                        <td class="firstColumn">
484
                           <div class="floatLeft"><b>Used by</b></div>
485
                           <div class="floatRight"><input id="button_usedBy_person" type="image" src="img/btM.gif" value="-" onclick="switchState('usedBy_person');" class="control" /></div>
486
                        </td>
487
                        <td>
488
                           <div id="usedBy_person" style="display:block">
489
                              <table class="usedByTable">
490
                                 <tr>
491
                                    <td class="firstColumn">Element </td>
492
                                    <td><b><a href="oaf-0_2_xsd.html#entity" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-0.2.xsd')">entity</a></b></td>
493
                                 </tr>
494
                              </table>
495
                           </div>
496
                        </td>
497
                     </tr>
498
                     <tr>
499
                        <td class="firstColumn"><b>Model</b></td>
500
                        <td><b><a href="oaf-person-0_2_xsd.html#person_firstname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">firstname</a></b> | <b><a href="oaf-person-0_2_xsd.html#person_secondnames" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">secondnames</a></b> | <b><a href="oaf-person-0_2_xsd.html#person_fullname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">fullname</a></b> | <b><a href="oaf-person-0_2_xsd.html#person_fax" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">fax</a></b> | <b><a href="oaf-person-0_2_xsd.html#person_email" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">email</a></b> | <b><a href="oaf-person-0_2_xsd.html#person_phone" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">phone</a></b> | <b><a href="oaf-person-0_2_xsd.html#person_nationality" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">nationality</a></b> | <b><a href="oaf-person-0_2_xsd.html#person_originalId" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">originalId+</a></b> | <b><a href="oaf-person-0_2_xsd.html#person_collectedfrom" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">collectedfrom+</a></b> | <b><a href="oaf-person-0_2_xsd.html#person_pid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">pid</a></b> | <b><a href="oaf-person-0_2_xsd.html#person_datainfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">datainfo</a></b> | <b><a href="oaf-person-0_2_xsd.html#person_rels" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">rels</a></b> | <b><a href="oaf-person-0_2_xsd.html#person_children" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">children</a></b></td>
501
                     </tr>
502
                     <tr>
503
                        <td class="firstColumn"><b>Children</b></td>
504
                        <td><b><a href="oaf-person-0_2_xsd.html#person_children" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">children</a></b>, <b><a href="oaf-person-0_2_xsd.html#person_collectedfrom" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">collectedfrom</a></b>, <b><a href="oaf-person-0_2_xsd.html#person_datainfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">datainfo</a></b>, <b><a href="oaf-person-0_2_xsd.html#person_email" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">email</a></b>, <b><a href="oaf-person-0_2_xsd.html#person_fax" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">fax</a></b>, <b><a href="oaf-person-0_2_xsd.html#person_firstname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">firstname</a></b>, <b><a href="oaf-person-0_2_xsd.html#person_fullname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">fullname</a></b>, <b><a href="oaf-person-0_2_xsd.html#person_nationality" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">nationality</a></b>, <b><a href="oaf-person-0_2_xsd.html#person_originalId" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">originalId</a></b>, <b><a href="oaf-person-0_2_xsd.html#person_phone" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">phone</a></b>, <b><a href="oaf-person-0_2_xsd.html#person_pid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">pid</a></b>, <b><a href="oaf-person-0_2_xsd.html#person_rels" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">rels</a></b>, <b><a href="oaf-person-0_2_xsd.html#person_secondnames" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">secondnames</a></b></td>
505
                     </tr>
506
                     <tr>
507
                        <td class="firstColumn">
508
                           <div class="floatLeft"><b>Instance</b></div>
509
                           <div class="floatRight"><input id="button_instance_person" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_person');" class="control" /></div>
510
                        </td>
511
                        <td>
512
                           <div id="instance_person" style="display:block">
513
                              <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">
514
                                 <tr>
515
                                    <td width="100%"><pre><span class="tEl">&lt;person</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">
516
  </span><span class="tEl">&lt;firstname</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;/firstname&gt;</span><span class="tI">
517
  </span><span class="tEl">&lt;secondnames</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;/secondnames&gt;</span><span class="tI">
518
  </span><span class="tEl">&lt;fullname</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;/fullname&gt;</span><span class="tI">
519
  </span><span class="tEl">&lt;fax</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;/fax&gt;</span><span class="tI">
520
  </span><span class="tEl">&lt;email</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;/email&gt;</span><span class="tI">
521
  </span><span class="tEl">&lt;phone</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;/phone&gt;</span><span class="tI">
522
  </span><span class="tEl">&lt;nationality</span><span class="tT"> </span><span class="tAN">classid=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">classname=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">inferenceprovenance=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">inferred=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">schemeid=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">schemename=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">trust=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/nationality&gt;</span><span class="tI">
523
  </span><span class="tEl">&lt;originalId</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,unbounded}</span><span class="tEl">&lt;/originalId&gt;</span><span class="tI">
524
  </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,unbounded}</span><span class="tEl">&lt;/collectedfrom&gt;</span><span class="tI">
525
  </span><span class="tEl">&lt;pid</span><span class="tT"> </span><span class="tAN">classid=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">classname=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">inferenceprovenance=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">inferred=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">schemeid=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">schemename=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">trust=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/pid&gt;</span><span class="tI">
526
  </span><span class="tEl">&lt;datainfo</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/datainfo&gt;</span><span class="tI">
527
  </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">
528
  </span><span class="tEl">&lt;children</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/children&gt;</span><span class="tI">
529
</span><span class="tEl">&lt;/person&gt;</span></pre></td>
530
                                 </tr>
531
                              </table>
532
                           </div>
533
                        </td>
534
                     </tr>
535
                     <tr>
536
                        <td class="firstColumn">
537
                           <div class="floatLeft"><b>Source</b></div>
538
                           <div class="floatRight"><input id="button_source_person" type="image" src="img/btM.gif" value="-" onclick="switchState('source_person');" class="control" /></div>
539
                        </td>
540
                        <td>
541
                           <div id="source_person" style="display:block">
542
                              <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">
543
                                 <tr>
544
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"person"</span><span class="tEl">&gt;</span><span class="tI">
545
  </span><span class="tEl">&lt;xs:complexType</span><span class="tEl">&gt;</span><span class="tI">
546
    </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">
547
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"firstname"</span><span class="tAN"> type=</span><span class="tAV">"inferenceExtendedStringType"</span><span class="tEl">/&gt;</span><span class="tI">
548
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"secondnames"</span><span class="tAN"> type=</span><span class="tAV">"inferenceExtendedStringType"</span><span class="tEl">/&gt;</span><span class="tI">
549
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"fullname"</span><span class="tAN"> type=</span><span class="tAV">"inferenceExtendedStringType"</span><span class="tEl">/&gt;</span><span class="tI">
550
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"fax"</span><span class="tAN"> type=</span><span class="tAV">"inferenceExtendedStringType"</span><span class="tEl">/&gt;</span><span class="tI">
551
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"email"</span><span class="tAN"> type=</span><span class="tAV">"inferenceExtendedStringType"</span><span class="tEl">/&gt;</span><span class="tI">
552
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"phone"</span><span class="tAN"> type=</span><span class="tAV">"inferenceExtendedStringType"</span><span class="tEl">/&gt;</span><span class="tI">
553
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"nationality"</span><span class="tAN"> type=</span><span class="tAV">"optionalClassedSchemedElement"</span><span class="tEl">&gt;</span><span class="tI">
554
        </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
555
          </span><span class="tEl">&lt;xs:documentation</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">Countries in ISO 3166-1 alpha-2.</span><span class="tI">
556
            </span><span class="tEl">&lt;p</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">For allowed values check: https://services.openaire.eu/provision/mvc/vocabularies/dnet:countries</span><span class="tEl">&lt;/p&gt;</span><span class="tI">
557
          </span><span class="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
558
        </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
559
      </span><span class="tEl">&lt;/xs:element&gt;</span><span class="tI">
560
      </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">"inferenceExtendedStringType"</span><span class="tAN"> maxOccurs=</span><span class="tAV">"unbounded"</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">"collectedfrom"</span><span class="tAN"> type=</span><span class="tAV">"namedIdElement"</span><span class="tAN"> maxOccurs=</span><span class="tAV">"unbounded"</span><span class="tEl">&gt;</span><span class="tI">
562
        </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
563
          </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 person has been collected from.</span><span class="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
564
        </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
565
      </span><span class="tEl">&lt;/xs:element&gt;</span><span class="tI">
566
      </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">"optionalClassedSchemedElement"</span><span class="tEl">/&gt;</span><span class="tI">
567
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"datainfo"</span><span class="tAN"> type=</span><span class="tAV">"datainfoType"</span><span class="tEl">/&gt;</span><span class="tI">
568
      </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">
569
        </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
570
          </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">
571
        </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
572
      </span><span class="tEl">&lt;/xs:element&gt;</span><span class="tI">
573
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"children"</span><span class="tEl">&gt;</span><span class="tI">
574
        </span><span class="tEl">&lt;xs:complexType</span><span class="tAN"> mixed=</span><span class="tAV">"true"</span><span class="tEl">/&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:choice&gt;</span><span class="tI">
577
  </span><span class="tEl">&lt;/xs:complexType&gt;</span><span class="tI">
578
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
579
                                 </tr>
580
                              </table>
581
                           </div>
582
                        </td>
583
                     </tr>
584
                     <tr>
585
                        <td class="firstColumn"><b>Schema location</b></td>
586
                        <td>http://www.openaire.eu/schema/0.2/oaf-person-0.2.xsd</td>
587
                     </tr>
588
                  </tbody>
589
               </table>
590
            </td>
591
            <td class="rt_lineRight"></td>
592
         </tr>
593
         <tr>
594
            <td class="rt_cornerBottomLeft"></td>
595
            <td class="rt_lineBottom"></td>
596
            <td class="rt_cornerBottomRight"></td>
597
         </tr>
598
      </table><a id="person_firstname"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-person-0_2_xsd.html#person" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">person</a></b> / firstname</span></div>
599
      <table class="rt">
600
         <tr>
601
            <td class="rt_cornerTopLeft"></td>
602
            <td class="rt_lineTop"></td>
603
            <td class="rt_cornerTopRight"></td>
604
         </tr>
605
         <tr>
606
            <td class="rt_lineLeft"></td>
607
            <td class="rt_content">
608
               <table class="component">
609
                  <tbody>
610
                     <tr>
611
                        <td class="firstColumn"><b>Namespace</b></td>
612
                        <td>No namespace</td>
613
                     </tr>
614
                     <tr>
615
                        <td class="firstColumn">
616
                           <div class="floatLeft"><b>Diagram</b></div>
617
                           <div class="floatRight"><input id="button_diagram_person_firstname" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_person_firstname');" class="control" /></div>
618
                        </td>
619
                        <td class="diagram">
620
                           <div id="diagram_person_firstname" style="display:block"><img alt="Diagram" border="0" src="img/oaf-person-0_2_xsd_Element_firstname.jpeg" usemap="#oaf-person-0_2_xsd_Element_firstname" /><map name="oaf-person-0_2_xsd_Element_firstname" id="oaf-person-0_2_xsd_Element_firstname">
621
                                 <area alt="oaf-common-0_2_xsd.tmp#optionalInferenceAttrGroup" href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup" coords="141,160,345,186" />
622
                                 <area alt="oaf-common-0_2_xsd.tmp#inferenceExtendedStringType" href="oaf-common-0_2_xsd.html#inferenceExtendedStringType" coords="113,3,322,25" /></map></div>
623
                        </td>
624
                     </tr>
625
                     <tr>
626
                        <td class="firstColumn"><b>Type</b></td>
627
                        <td><b><a href="oaf-common-0_2_xsd.html#inferenceExtendedStringType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferenceExtendedStringType</a></b></td>
628
                     </tr>
629
                     <tr>
630
                        <td class="firstColumn">
631
                           <div class="floatLeft"><b>Properties</b></div>
632
                           <div class="floatRight"><input id="button_properties_person_firstname" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_person_firstname');" class="control" /></div>
633
                        </td>
634
                        <td>
635
                           <div id="properties_person_firstname" style="display:block">
636
                              <table class="propertiesTable">
637
                                 <tr>
638
                                    <td class="firstColumn">content:
639
                                       
640
                                    </td>
641
                                    <td><b>complex</b></td>
642
                                 </tr>
643
                                 <tr>
644
                                    <td class="firstColumn">mixed:
645
                                       
646
                                    </td>
647
                                    <td><b>true</b></td>
648
                                 </tr>
649
                              </table>
650
                           </div>
651
                        </td>
652
                     </tr>
653
                     <tr>
654
                        <td class="firstColumn">
655
                           <div class="floatLeft"><b>Attributes</b></div>
656
                           <div class="floatRight"><input id="button_attributes_person_firstname" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_person_firstname');" class="control" /></div>
657
                        </td>
658
                        <td>
659
                           <div id="attributes_person_firstname" style="display:block">
660
                              <table class="attributesTable">
661
                                 <thead>
662
                                    <tr>
663
                                       <th>QName</th>
664
                                       <th>Type</th>
665
                                       <th>Fixed</th>
666
                                       <th>Default</th>
667
                                       <th>Use</th>
668
                                       <th>Annotation</th>
669
                                    </tr>
670
                                 </thead>
671
                                 <tr>
672
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferenceprovenance</a></b></td>
673
                                    <td><b>xs:string</b></td>
674
                                    <td></td>
675
                                    <td></td>
676
                                    <td>optional</td>
677
                                    <td>
678
                                       <div class="annotation">
679
                                          <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">
680
                                             <tr>
681
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
682
                                             </tr>
683
                                          </table>
684
                                       </div>
685
                                    </td>
686
                                 </tr>
687
                                 <tr>
688
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferred</a></b></td>
689
                                    <td><b>xs:boolean</b></td>
690
                                    <td></td>
691
                                    <td></td>
692
                                    <td>optional</td>
693
                                    <td>
694
                                       <div class="annotation">
695
                                          <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">
696
                                             <tr>
697
                                                <td width="100%"><pre><span class="tT">True if this information has been inferred by the</span><span class="tI">
698
</span><span class="tT">automatic inference</span><span class="tI">
699
</span><span class="tT">algorithms run by OpenAIRE.</span></pre></td>
700
                                             </tr>
701
                                          </table>
702
                                       </div>
703
                                    </td>
704
                                 </tr>
705
                                 <tr>
706
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">trust</a></b></td>
707
                                    <td><b>xs:string</b></td>
708
                                    <td></td>
709
                                    <td></td>
710
                                    <td>optional</td>
711
                                    <td>
712
                                       <div class="annotation">
713
                                          <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">
714
                                             <tr>
715
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range</span><span class="tI">
716
</span><span class="tT">[0,1].</span><span class="tI">
717
</span><span class="tT">More the value, more trustworthy is the information.</span></pre></td>
718
                                             </tr>
719
                                          </table>
720
                                       </div>
721
                                    </td>
722
                                 </tr>
723
                              </table>
724
                           </div>
725
                        </td>
726
                     </tr>
727
                     <tr>
728
                        <td class="firstColumn">
729
                           <div class="floatLeft"><b>Source</b></div>
730
                           <div class="floatRight"><input id="button_source_person_firstname" type="image" src="img/btM.gif" value="-" onclick="switchState('source_person_firstname');" class="control" /></div>
731
                        </td>
732
                        <td>
733
                           <div id="source_person_firstname" style="display:block">
734
                              <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">
735
                                 <tr>
736
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"firstname"</span><span class="tAN"> type=</span><span class="tAV">"inferenceExtendedStringType"</span><span class="tEl">/&gt;</span></pre></td>
737
                                 </tr>
738
                              </table>
739
                           </div>
740
                        </td>
741
                     </tr>
742
                     <tr>
743
                        <td class="firstColumn"><b>Schema location</b></td>
744
                        <td>http://www.openaire.eu/schema/0.2/oaf-person-0.2.xsd</td>
745
                     </tr>
746
                  </tbody>
747
               </table>
748
            </td>
749
            <td class="rt_lineRight"></td>
750
         </tr>
751
         <tr>
752
            <td class="rt_cornerBottomLeft"></td>
753
            <td class="rt_lineBottom"></td>
754
            <td class="rt_cornerBottomRight"></td>
755
         </tr>
756
      </table><a id="person_secondnames"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-person-0_2_xsd.html#person" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">person</a></b> / secondnames</span></div>
757
      <table class="rt">
758
         <tr>
759
            <td class="rt_cornerTopLeft"></td>
760
            <td class="rt_lineTop"></td>
761
            <td class="rt_cornerTopRight"></td>
762
         </tr>
763
         <tr>
764
            <td class="rt_lineLeft"></td>
765
            <td class="rt_content">
766
               <table class="component">
767
                  <tbody>
768
                     <tr>
769
                        <td class="firstColumn"><b>Namespace</b></td>
770
                        <td>No namespace</td>
771
                     </tr>
772
                     <tr>
773
                        <td class="firstColumn">
774
                           <div class="floatLeft"><b>Diagram</b></div>
775
                           <div class="floatRight"><input id="button_diagram_person_secondnames" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_person_secondnames');" class="control" /></div>
776
                        </td>
777
                        <td class="diagram">
778
                           <div id="diagram_person_secondnames" style="display:block"><img alt="Diagram" border="0" src="img/oaf-person-0_2_xsd_Element_secondnames.jpeg" usemap="#oaf-person-0_2_xsd_Element_secondnames" /><map name="oaf-person-0_2_xsd_Element_secondnames" id="oaf-person-0_2_xsd_Element_secondnames">
779
                                 <area alt="oaf-common-0_2_xsd.tmp#optionalInferenceAttrGroup" href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup" coords="164,160,368,186" />
780
                                 <area alt="oaf-common-0_2_xsd.tmp#inferenceExtendedStringType" href="oaf-common-0_2_xsd.html#inferenceExtendedStringType" coords="136,3,345,25" /></map></div>
781
                        </td>
782
                     </tr>
783
                     <tr>
784
                        <td class="firstColumn"><b>Type</b></td>
785
                        <td><b><a href="oaf-common-0_2_xsd.html#inferenceExtendedStringType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferenceExtendedStringType</a></b></td>
786
                     </tr>
787
                     <tr>
788
                        <td class="firstColumn">
789
                           <div class="floatLeft"><b>Properties</b></div>
790
                           <div class="floatRight"><input id="button_properties_person_secondnames" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_person_secondnames');" class="control" /></div>
791
                        </td>
792
                        <td>
793
                           <div id="properties_person_secondnames" style="display:block">
794
                              <table class="propertiesTable">
795
                                 <tr>
796
                                    <td class="firstColumn">content:
797
                                       
798
                                    </td>
799
                                    <td><b>complex</b></td>
800
                                 </tr>
801
                                 <tr>
802
                                    <td class="firstColumn">mixed:
803
                                       
804
                                    </td>
805
                                    <td><b>true</b></td>
806
                                 </tr>
807
                              </table>
808
                           </div>
809
                        </td>
810
                     </tr>
811
                     <tr>
812
                        <td class="firstColumn">
813
                           <div class="floatLeft"><b>Attributes</b></div>
814
                           <div class="floatRight"><input id="button_attributes_person_secondnames" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_person_secondnames');" class="control" /></div>
815
                        </td>
816
                        <td>
817
                           <div id="attributes_person_secondnames" style="display:block">
818
                              <table class="attributesTable">
819
                                 <thead>
820
                                    <tr>
821
                                       <th>QName</th>
822
                                       <th>Type</th>
823
                                       <th>Fixed</th>
824
                                       <th>Default</th>
825
                                       <th>Use</th>
826
                                       <th>Annotation</th>
827
                                    </tr>
828
                                 </thead>
829
                                 <tr>
830
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferenceprovenance</a></b></td>
831
                                    <td><b>xs:string</b></td>
832
                                    <td></td>
833
                                    <td></td>
834
                                    <td>optional</td>
835
                                    <td>
836
                                       <div class="annotation">
837
                                          <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">
838
                                             <tr>
839
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
840
                                             </tr>
841
                                          </table>
842
                                       </div>
843
                                    </td>
844
                                 </tr>
845
                                 <tr>
846
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferred</a></b></td>
847
                                    <td><b>xs:boolean</b></td>
848
                                    <td></td>
849
                                    <td></td>
850
                                    <td>optional</td>
851
                                    <td>
852
                                       <div class="annotation">
853
                                          <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">
854
                                             <tr>
855
                                                <td width="100%"><pre><span class="tT">True if this information has been inferred by the</span><span class="tI">
856
</span><span class="tT">automatic inference</span><span class="tI">
857
</span><span class="tT">algorithms run by OpenAIRE.</span></pre></td>
858
                                             </tr>
859
                                          </table>
860
                                       </div>
861
                                    </td>
862
                                 </tr>
863
                                 <tr>
864
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">trust</a></b></td>
865
                                    <td><b>xs:string</b></td>
866
                                    <td></td>
867
                                    <td></td>
868
                                    <td>optional</td>
869
                                    <td>
870
                                       <div class="annotation">
871
                                          <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">
872
                                             <tr>
873
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range</span><span class="tI">
874
</span><span class="tT">[0,1].</span><span class="tI">
875
</span><span class="tT">More the value, more trustworthy is the information.</span></pre></td>
876
                                             </tr>
877
                                          </table>
878
                                       </div>
879
                                    </td>
880
                                 </tr>
881
                              </table>
882
                           </div>
883
                        </td>
884
                     </tr>
885
                     <tr>
886
                        <td class="firstColumn">
887
                           <div class="floatLeft"><b>Source</b></div>
888
                           <div class="floatRight"><input id="button_source_person_secondnames" type="image" src="img/btM.gif" value="-" onclick="switchState('source_person_secondnames');" class="control" /></div>
889
                        </td>
890
                        <td>
891
                           <div id="source_person_secondnames" style="display:block">
892
                              <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">
893
                                 <tr>
894
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"secondnames"</span><span class="tAN"> type=</span><span class="tAV">"inferenceExtendedStringType"</span><span class="tEl">/&gt;</span></pre></td>
895
                                 </tr>
896
                              </table>
897
                           </div>
898
                        </td>
899
                     </tr>
900
                     <tr>
901
                        <td class="firstColumn"><b>Schema location</b></td>
902
                        <td>http://www.openaire.eu/schema/0.2/oaf-person-0.2.xsd</td>
903
                     </tr>
904
                  </tbody>
905
               </table>
906
            </td>
907
            <td class="rt_lineRight"></td>
908
         </tr>
909
         <tr>
910
            <td class="rt_cornerBottomLeft"></td>
911
            <td class="rt_lineBottom"></td>
912
            <td class="rt_cornerBottomRight"></td>
913
         </tr>
914
      </table><a id="person_fullname"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-person-0_2_xsd.html#person" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">person</a></b> / fullname</span></div>
915
      <table class="rt">
916
         <tr>
917
            <td class="rt_cornerTopLeft"></td>
918
            <td class="rt_lineTop"></td>
919
            <td class="rt_cornerTopRight"></td>
920
         </tr>
921
         <tr>
922
            <td class="rt_lineLeft"></td>
923
            <td class="rt_content">
924
               <table class="component">
925
                  <tbody>
926
                     <tr>
927
                        <td class="firstColumn"><b>Namespace</b></td>
928
                        <td>No namespace</td>
929
                     </tr>
930
                     <tr>
931
                        <td class="firstColumn">
932
                           <div class="floatLeft"><b>Diagram</b></div>
933
                           <div class="floatRight"><input id="button_diagram_person_fullname" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_person_fullname');" class="control" /></div>
934
                        </td>
935
                        <td class="diagram">
936
                           <div id="diagram_person_fullname" style="display:block"><img alt="Diagram" border="0" src="img/oaf-person-0_2_xsd_Element_fullname.jpeg" usemap="#oaf-person-0_2_xsd_Element_fullname" /><map name="oaf-person-0_2_xsd_Element_fullname" id="oaf-person-0_2_xsd_Element_fullname">
937
                                 <area alt="oaf-common-0_2_xsd.tmp#optionalInferenceAttrGroup" href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup" coords="136,160,340,186" />
938
                                 <area alt="oaf-common-0_2_xsd.tmp#inferenceExtendedStringType" href="oaf-common-0_2_xsd.html#inferenceExtendedStringType" coords="108,3,317,25" /></map></div>
939
                        </td>
940
                     </tr>
941
                     <tr>
942
                        <td class="firstColumn"><b>Type</b></td>
943
                        <td><b><a href="oaf-common-0_2_xsd.html#inferenceExtendedStringType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferenceExtendedStringType</a></b></td>
944
                     </tr>
945
                     <tr>
946
                        <td class="firstColumn">
947
                           <div class="floatLeft"><b>Properties</b></div>
948
                           <div class="floatRight"><input id="button_properties_person_fullname" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_person_fullname');" class="control" /></div>
949
                        </td>
950
                        <td>
951
                           <div id="properties_person_fullname" style="display:block">
952
                              <table class="propertiesTable">
953
                                 <tr>
954
                                    <td class="firstColumn">content:
955
                                       
956
                                    </td>
957
                                    <td><b>complex</b></td>
958
                                 </tr>
959
                                 <tr>
960
                                    <td class="firstColumn">mixed:
961
                                       
962
                                    </td>
963
                                    <td><b>true</b></td>
964
                                 </tr>
965
                              </table>
966
                           </div>
967
                        </td>
968
                     </tr>
969
                     <tr>
970
                        <td class="firstColumn">
971
                           <div class="floatLeft"><b>Attributes</b></div>
972
                           <div class="floatRight"><input id="button_attributes_person_fullname" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_person_fullname');" class="control" /></div>
973
                        </td>
974
                        <td>
975
                           <div id="attributes_person_fullname" style="display:block">
976
                              <table class="attributesTable">
977
                                 <thead>
978
                                    <tr>
979
                                       <th>QName</th>
980
                                       <th>Type</th>
981
                                       <th>Fixed</th>
982
                                       <th>Default</th>
983
                                       <th>Use</th>
984
                                       <th>Annotation</th>
985
                                    </tr>
986
                                 </thead>
987
                                 <tr>
988
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferenceprovenance</a></b></td>
989
                                    <td><b>xs:string</b></td>
990
                                    <td></td>
991
                                    <td></td>
992
                                    <td>optional</td>
993
                                    <td>
994
                                       <div class="annotation">
995
                                          <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">
996
                                             <tr>
997
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
998
                                             </tr>
999
                                          </table>
1000
                                       </div>
1001
                                    </td>
1002
                                 </tr>
1003
                                 <tr>
1004
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferred</a></b></td>
1005
                                    <td><b>xs:boolean</b></td>
1006
                                    <td></td>
1007
                                    <td></td>
1008
                                    <td>optional</td>
1009
                                    <td>
1010
                                       <div class="annotation">
1011
                                          <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">
1012
                                             <tr>
1013
                                                <td width="100%"><pre><span class="tT">True if this information has been inferred by the</span><span class="tI">
1014
</span><span class="tT">automatic inference</span><span class="tI">
1015
</span><span class="tT">algorithms run by OpenAIRE.</span></pre></td>
1016
                                             </tr>
1017
                                          </table>
1018
                                       </div>
1019
                                    </td>
1020
                                 </tr>
1021
                                 <tr>
1022
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">trust</a></b></td>
1023
                                    <td><b>xs:string</b></td>
1024
                                    <td></td>
1025
                                    <td></td>
1026
                                    <td>optional</td>
1027
                                    <td>
1028
                                       <div class="annotation">
1029
                                          <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">
1030
                                             <tr>
1031
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range</span><span class="tI">
1032
</span><span class="tT">[0,1].</span><span class="tI">
1033
</span><span class="tT">More the value, more trustworthy is the information.</span></pre></td>
1034
                                             </tr>
1035
                                          </table>
1036
                                       </div>
1037
                                    </td>
1038
                                 </tr>
1039
                              </table>
1040
                           </div>
1041
                        </td>
1042
                     </tr>
1043
                     <tr>
1044
                        <td class="firstColumn">
1045
                           <div class="floatLeft"><b>Source</b></div>
1046
                           <div class="floatRight"><input id="button_source_person_fullname" type="image" src="img/btM.gif" value="-" onclick="switchState('source_person_fullname');" class="control" /></div>
1047
                        </td>
1048
                        <td>
1049
                           <div id="source_person_fullname" style="display:block">
1050
                              <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">
1051
                                 <tr>
1052
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"fullname"</span><span class="tAN"> type=</span><span class="tAV">"inferenceExtendedStringType"</span><span class="tEl">/&gt;</span></pre></td>
1053
                                 </tr>
1054
                              </table>
1055
                           </div>
1056
                        </td>
1057
                     </tr>
1058
                     <tr>
1059
                        <td class="firstColumn"><b>Schema location</b></td>
1060
                        <td>http://www.openaire.eu/schema/0.2/oaf-person-0.2.xsd</td>
1061
                     </tr>
1062
                  </tbody>
1063
               </table>
1064
            </td>
1065
            <td class="rt_lineRight"></td>
1066
         </tr>
1067
         <tr>
1068
            <td class="rt_cornerBottomLeft"></td>
1069
            <td class="rt_lineBottom"></td>
1070
            <td class="rt_cornerBottomRight"></td>
1071
         </tr>
1072
      </table><a id="person_fax"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-person-0_2_xsd.html#person" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">person</a></b> / fax</span></div>
1073
      <table class="rt">
1074
         <tr>
1075
            <td class="rt_cornerTopLeft"></td>
1076
            <td class="rt_lineTop"></td>
1077
            <td class="rt_cornerTopRight"></td>
1078
         </tr>
1079
         <tr>
1080
            <td class="rt_lineLeft"></td>
1081
            <td class="rt_content">
1082
               <table class="component">
1083
                  <tbody>
1084
                     <tr>
1085
                        <td class="firstColumn"><b>Namespace</b></td>
1086
                        <td>No namespace</td>
1087
                     </tr>
1088
                     <tr>
1089
                        <td class="firstColumn">
1090
                           <div class="floatLeft"><b>Diagram</b></div>
1091
                           <div class="floatRight"><input id="button_diagram_person_fax" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_person_fax');" class="control" /></div>
1092
                        </td>
1093
                        <td class="diagram">
1094
                           <div id="diagram_person_fax" style="display:block"><img alt="Diagram" border="0" src="img/oaf-person-0_2_xsd_Element_fax.jpeg" usemap="#oaf-person-0_2_xsd_Element_fax" /><map name="oaf-person-0_2_xsd_Element_fax" id="oaf-person-0_2_xsd_Element_fax">
1095
                                 <area alt="oaf-common-0_2_xsd.tmp#optionalInferenceAttrGroup" href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup" coords="114,160,318,186" />
1096
                                 <area alt="oaf-common-0_2_xsd.tmp#inferenceExtendedStringType" href="oaf-common-0_2_xsd.html#inferenceExtendedStringType" coords="86,3,295,25" /></map></div>
1097
                        </td>
1098
                     </tr>
1099
                     <tr>
1100
                        <td class="firstColumn"><b>Type</b></td>
1101
                        <td><b><a href="oaf-common-0_2_xsd.html#inferenceExtendedStringType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferenceExtendedStringType</a></b></td>
1102
                     </tr>
1103
                     <tr>
1104
                        <td class="firstColumn">
1105
                           <div class="floatLeft"><b>Properties</b></div>
1106
                           <div class="floatRight"><input id="button_properties_person_fax" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_person_fax');" class="control" /></div>
1107
                        </td>
1108
                        <td>
1109
                           <div id="properties_person_fax" style="display:block">
1110
                              <table class="propertiesTable">
1111
                                 <tr>
1112
                                    <td class="firstColumn">content:
1113
                                       
1114
                                    </td>
1115
                                    <td><b>complex</b></td>
1116
                                 </tr>
1117
                                 <tr>
1118
                                    <td class="firstColumn">mixed:
1119
                                       
1120
                                    </td>
1121
                                    <td><b>true</b></td>
1122
                                 </tr>
1123
                              </table>
1124
                           </div>
1125
                        </td>
1126
                     </tr>
1127
                     <tr>
1128
                        <td class="firstColumn">
1129
                           <div class="floatLeft"><b>Attributes</b></div>
1130
                           <div class="floatRight"><input id="button_attributes_person_fax" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_person_fax');" class="control" /></div>
1131
                        </td>
1132
                        <td>
1133
                           <div id="attributes_person_fax" style="display:block">
1134
                              <table class="attributesTable">
1135
                                 <thead>
1136
                                    <tr>
1137
                                       <th>QName</th>
1138
                                       <th>Type</th>
1139
                                       <th>Fixed</th>
1140
                                       <th>Default</th>
1141
                                       <th>Use</th>
1142
                                       <th>Annotation</th>
1143
                                    </tr>
1144
                                 </thead>
1145
                                 <tr>
1146
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferenceprovenance</a></b></td>
1147
                                    <td><b>xs:string</b></td>
1148
                                    <td></td>
1149
                                    <td></td>
1150
                                    <td>optional</td>
1151
                                    <td>
1152
                                       <div class="annotation">
1153
                                          <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">
1154
                                             <tr>
1155
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
1156
                                             </tr>
1157
                                          </table>
1158
                                       </div>
1159
                                    </td>
1160
                                 </tr>
1161
                                 <tr>
1162
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferred</a></b></td>
1163
                                    <td><b>xs:boolean</b></td>
1164
                                    <td></td>
1165
                                    <td></td>
1166
                                    <td>optional</td>
1167
                                    <td>
1168
                                       <div class="annotation">
1169
                                          <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">
1170
                                             <tr>
1171
                                                <td width="100%"><pre><span class="tT">True if this information has been inferred by the</span><span class="tI">
1172
</span><span class="tT">automatic inference</span><span class="tI">
1173
</span><span class="tT">algorithms run by OpenAIRE.</span></pre></td>
1174
                                             </tr>
1175
                                          </table>
1176
                                       </div>
1177
                                    </td>
1178
                                 </tr>
1179
                                 <tr>
1180
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">trust</a></b></td>
1181
                                    <td><b>xs:string</b></td>
1182
                                    <td></td>
1183
                                    <td></td>
1184
                                    <td>optional</td>
1185
                                    <td>
1186
                                       <div class="annotation">
1187
                                          <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">
1188
                                             <tr>
1189
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range</span><span class="tI">
1190
</span><span class="tT">[0,1].</span><span class="tI">
1191
</span><span class="tT">More the value, more trustworthy is the information.</span></pre></td>
1192
                                             </tr>
1193
                                          </table>
1194
                                       </div>
1195
                                    </td>
1196
                                 </tr>
1197
                              </table>
1198
                           </div>
1199
                        </td>
1200
                     </tr>
1201
                     <tr>
1202
                        <td class="firstColumn">
1203
                           <div class="floatLeft"><b>Source</b></div>
1204
                           <div class="floatRight"><input id="button_source_person_fax" type="image" src="img/btM.gif" value="-" onclick="switchState('source_person_fax');" class="control" /></div>
1205
                        </td>
1206
                        <td>
1207
                           <div id="source_person_fax" style="display:block">
1208
                              <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">
1209
                                 <tr>
1210
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"fax"</span><span class="tAN"> type=</span><span class="tAV">"inferenceExtendedStringType"</span><span class="tEl">/&gt;</span></pre></td>
1211
                                 </tr>
1212
                              </table>
1213
                           </div>
1214
                        </td>
1215
                     </tr>
1216
                     <tr>
1217
                        <td class="firstColumn"><b>Schema location</b></td>
1218
                        <td>http://www.openaire.eu/schema/0.2/oaf-person-0.2.xsd</td>
1219
                     </tr>
1220
                  </tbody>
1221
               </table>
1222
            </td>
1223
            <td class="rt_lineRight"></td>
1224
         </tr>
1225
         <tr>
1226
            <td class="rt_cornerBottomLeft"></td>
1227
            <td class="rt_lineBottom"></td>
1228
            <td class="rt_cornerBottomRight"></td>
1229
         </tr>
1230
      </table><a id="person_email"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-person-0_2_xsd.html#person" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">person</a></b> / email</span></div>
1231
      <table class="rt">
1232
         <tr>
1233
            <td class="rt_cornerTopLeft"></td>
1234
            <td class="rt_lineTop"></td>
1235
            <td class="rt_cornerTopRight"></td>
1236
         </tr>
1237
         <tr>
1238
            <td class="rt_lineLeft"></td>
1239
            <td class="rt_content">
1240
               <table class="component">
1241
                  <tbody>
1242
                     <tr>
1243
                        <td class="firstColumn"><b>Namespace</b></td>
1244
                        <td>No namespace</td>
1245
                     </tr>
1246
                     <tr>
1247
                        <td class="firstColumn">
1248
                           <div class="floatLeft"><b>Diagram</b></div>
1249
                           <div class="floatRight"><input id="button_diagram_person_email" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_person_email');" class="control" /></div>
1250
                        </td>
1251
                        <td class="diagram">
1252
                           <div id="diagram_person_email" style="display:block"><img alt="Diagram" border="0" src="img/oaf-person-0_2_xsd_Element_email.jpeg" usemap="#oaf-person-0_2_xsd_Element_email" /><map name="oaf-person-0_2_xsd_Element_email" id="oaf-person-0_2_xsd_Element_email">
1253
                                 <area alt="oaf-common-0_2_xsd.tmp#optionalInferenceAttrGroup" href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup" coords="118,160,322,186" />
1254
                                 <area alt="oaf-common-0_2_xsd.tmp#inferenceExtendedStringType" href="oaf-common-0_2_xsd.html#inferenceExtendedStringType" coords="90,3,299,25" /></map></div>
1255
                        </td>
1256
                     </tr>
1257
                     <tr>
1258
                        <td class="firstColumn"><b>Type</b></td>
1259
                        <td><b><a href="oaf-common-0_2_xsd.html#inferenceExtendedStringType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferenceExtendedStringType</a></b></td>
1260
                     </tr>
1261
                     <tr>
1262
                        <td class="firstColumn">
1263
                           <div class="floatLeft"><b>Properties</b></div>
1264
                           <div class="floatRight"><input id="button_properties_person_email" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_person_email');" class="control" /></div>
1265
                        </td>
1266
                        <td>
1267
                           <div id="properties_person_email" style="display:block">
1268
                              <table class="propertiesTable">
1269
                                 <tr>
1270
                                    <td class="firstColumn">content:
1271
                                       
1272
                                    </td>
1273
                                    <td><b>complex</b></td>
1274
                                 </tr>
1275
                                 <tr>
1276
                                    <td class="firstColumn">mixed:
1277
                                       
1278
                                    </td>
1279
                                    <td><b>true</b></td>
1280
                                 </tr>
1281
                              </table>
1282
                           </div>
1283
                        </td>
1284
                     </tr>
1285
                     <tr>
1286
                        <td class="firstColumn">
1287
                           <div class="floatLeft"><b>Attributes</b></div>
1288
                           <div class="floatRight"><input id="button_attributes_person_email" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_person_email');" class="control" /></div>
1289
                        </td>
1290
                        <td>
1291
                           <div id="attributes_person_email" style="display:block">
1292
                              <table class="attributesTable">
1293
                                 <thead>
1294
                                    <tr>
1295
                                       <th>QName</th>
1296
                                       <th>Type</th>
1297
                                       <th>Fixed</th>
1298
                                       <th>Default</th>
1299
                                       <th>Use</th>
1300
                                       <th>Annotation</th>
1301
                                    </tr>
1302
                                 </thead>
1303
                                 <tr>
1304
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferenceprovenance</a></b></td>
1305
                                    <td><b>xs:string</b></td>
1306
                                    <td></td>
1307
                                    <td></td>
1308
                                    <td>optional</td>
1309
                                    <td>
1310
                                       <div class="annotation">
1311
                                          <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">
1312
                                             <tr>
1313
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
1314
                                             </tr>
1315
                                          </table>
1316
                                       </div>
1317
                                    </td>
1318
                                 </tr>
1319
                                 <tr>
1320
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferred</a></b></td>
1321
                                    <td><b>xs:boolean</b></td>
1322
                                    <td></td>
1323
                                    <td></td>
1324
                                    <td>optional</td>
1325
                                    <td>
1326
                                       <div class="annotation">
1327
                                          <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">
1328
                                             <tr>
1329
                                                <td width="100%"><pre><span class="tT">True if this information has been inferred by the</span><span class="tI">
1330
</span><span class="tT">automatic inference</span><span class="tI">
1331
</span><span class="tT">algorithms run by OpenAIRE.</span></pre></td>
1332
                                             </tr>
1333
                                          </table>
1334
                                       </div>
1335
                                    </td>
1336
                                 </tr>
1337
                                 <tr>
1338
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">trust</a></b></td>
1339
                                    <td><b>xs:string</b></td>
1340
                                    <td></td>
1341
                                    <td></td>
1342
                                    <td>optional</td>
1343
                                    <td>
1344
                                       <div class="annotation">
1345
                                          <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">
1346
                                             <tr>
1347
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range</span><span class="tI">
1348
</span><span class="tT">[0,1].</span><span class="tI">
1349
</span><span class="tT">More the value, more trustworthy is the information.</span></pre></td>
1350
                                             </tr>
1351
                                          </table>
1352
                                       </div>
1353
                                    </td>
1354
                                 </tr>
1355
                              </table>
1356
                           </div>
1357
                        </td>
1358
                     </tr>
1359
                     <tr>
1360
                        <td class="firstColumn">
1361
                           <div class="floatLeft"><b>Source</b></div>
1362
                           <div class="floatRight"><input id="button_source_person_email" type="image" src="img/btM.gif" value="-" onclick="switchState('source_person_email');" class="control" /></div>
1363
                        </td>
1364
                        <td>
1365
                           <div id="source_person_email" style="display:block">
1366
                              <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">
1367
                                 <tr>
1368
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"email"</span><span class="tAN"> type=</span><span class="tAV">"inferenceExtendedStringType"</span><span class="tEl">/&gt;</span></pre></td>
1369
                                 </tr>
1370
                              </table>
1371
                           </div>
1372
                        </td>
1373
                     </tr>
1374
                     <tr>
1375
                        <td class="firstColumn"><b>Schema location</b></td>
1376
                        <td>http://www.openaire.eu/schema/0.2/oaf-person-0.2.xsd</td>
1377
                     </tr>
1378
                  </tbody>
1379
               </table>
1380
            </td>
1381
            <td class="rt_lineRight"></td>
1382
         </tr>
1383
         <tr>
1384
            <td class="rt_cornerBottomLeft"></td>
1385
            <td class="rt_lineBottom"></td>
1386
            <td class="rt_cornerBottomRight"></td>
1387
         </tr>
1388
      </table><a id="person_phone"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-person-0_2_xsd.html#person" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">person</a></b> / phone</span></div>
1389
      <table class="rt">
1390
         <tr>
1391
            <td class="rt_cornerTopLeft"></td>
1392
            <td class="rt_lineTop"></td>
1393
            <td class="rt_cornerTopRight"></td>
1394
         </tr>
1395
         <tr>
1396
            <td class="rt_lineLeft"></td>
1397
            <td class="rt_content">
1398
               <table class="component">
1399
                  <tbody>
1400
                     <tr>
1401
                        <td class="firstColumn"><b>Namespace</b></td>
1402
                        <td>No namespace</td>
1403
                     </tr>
1404
                     <tr>
1405
                        <td class="firstColumn">
1406
                           <div class="floatLeft"><b>Diagram</b></div>
1407
                           <div class="floatRight"><input id="button_diagram_person_phone" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_person_phone');" class="control" /></div>
1408
                        </td>
1409
                        <td class="diagram">
1410
                           <div id="diagram_person_phone" style="display:block"><img alt="Diagram" border="0" src="img/oaf-person-0_2_xsd_Element_phone.jpeg" usemap="#oaf-person-0_2_xsd_Element_phone" /><map name="oaf-person-0_2_xsd_Element_phone" id="oaf-person-0_2_xsd_Element_phone">
1411
                                 <area alt="oaf-common-0_2_xsd.tmp#optionalInferenceAttrGroup" href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup" coords="124,160,328,186" />
1412
                                 <area alt="oaf-common-0_2_xsd.tmp#inferenceExtendedStringType" href="oaf-common-0_2_xsd.html#inferenceExtendedStringType" coords="96,3,305,25" /></map></div>
1413
                        </td>
1414
                     </tr>
1415
                     <tr>
1416
                        <td class="firstColumn"><b>Type</b></td>
1417
                        <td><b><a href="oaf-common-0_2_xsd.html#inferenceExtendedStringType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferenceExtendedStringType</a></b></td>
1418
                     </tr>
1419
                     <tr>
1420
                        <td class="firstColumn">
1421
                           <div class="floatLeft"><b>Properties</b></div>
1422
                           <div class="floatRight"><input id="button_properties_person_phone" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_person_phone');" class="control" /></div>
1423
                        </td>
1424
                        <td>
1425
                           <div id="properties_person_phone" style="display:block">
1426
                              <table class="propertiesTable">
1427
                                 <tr>
1428
                                    <td class="firstColumn">content:
1429
                                       
1430
                                    </td>
1431
                                    <td><b>complex</b></td>
1432
                                 </tr>
1433
                                 <tr>
1434
                                    <td class="firstColumn">mixed:
1435
                                       
1436
                                    </td>
1437
                                    <td><b>true</b></td>
1438
                                 </tr>
1439
                              </table>
1440
                           </div>
1441
                        </td>
1442
                     </tr>
1443
                     <tr>
1444
                        <td class="firstColumn">
1445
                           <div class="floatLeft"><b>Attributes</b></div>
1446
                           <div class="floatRight"><input id="button_attributes_person_phone" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_person_phone');" class="control" /></div>
1447
                        </td>
1448
                        <td>
1449
                           <div id="attributes_person_phone" style="display:block">
1450
                              <table class="attributesTable">
1451
                                 <thead>
1452
                                    <tr>
1453
                                       <th>QName</th>
1454
                                       <th>Type</th>
1455
                                       <th>Fixed</th>
1456
                                       <th>Default</th>
1457
                                       <th>Use</th>
1458
                                       <th>Annotation</th>
1459
                                    </tr>
1460
                                 </thead>
1461
                                 <tr>
1462
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferenceprovenance</a></b></td>
1463
                                    <td><b>xs:string</b></td>
1464
                                    <td></td>
1465
                                    <td></td>
1466
                                    <td>optional</td>
1467
                                    <td>
1468
                                       <div class="annotation">
1469
                                          <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">
1470
                                             <tr>
1471
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
1472
                                             </tr>
1473
                                          </table>
1474
                                       </div>
1475
                                    </td>
1476
                                 </tr>
1477
                                 <tr>
1478
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferred</a></b></td>
1479
                                    <td><b>xs:boolean</b></td>
1480
                                    <td></td>
1481
                                    <td></td>
1482
                                    <td>optional</td>
1483
                                    <td>
1484
                                       <div class="annotation">
1485
                                          <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">
1486
                                             <tr>
1487
                                                <td width="100%"><pre><span class="tT">True if this information has been inferred by the</span><span class="tI">
1488
</span><span class="tT">automatic inference</span><span class="tI">
1489
</span><span class="tT">algorithms run by OpenAIRE.</span></pre></td>
1490
                                             </tr>
1491
                                          </table>
1492
                                       </div>
1493
                                    </td>
1494
                                 </tr>
1495
                                 <tr>
1496
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">trust</a></b></td>
1497
                                    <td><b>xs:string</b></td>
1498
                                    <td></td>
1499
                                    <td></td>
1500
                                    <td>optional</td>
1501
                                    <td>
1502
                                       <div class="annotation">
1503
                                          <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">
1504
                                             <tr>
1505
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range</span><span class="tI">
1506
</span><span class="tT">[0,1].</span><span class="tI">
1507
</span><span class="tT">More the value, more trustworthy is the information.</span></pre></td>
1508
                                             </tr>
1509
                                          </table>
1510
                                       </div>
1511
                                    </td>
1512
                                 </tr>
1513
                              </table>
1514
                           </div>
1515
                        </td>
1516
                     </tr>
1517
                     <tr>
1518
                        <td class="firstColumn">
1519
                           <div class="floatLeft"><b>Source</b></div>
1520
                           <div class="floatRight"><input id="button_source_person_phone" type="image" src="img/btM.gif" value="-" onclick="switchState('source_person_phone');" class="control" /></div>
1521
                        </td>
1522
                        <td>
1523
                           <div id="source_person_phone" style="display:block">
1524
                              <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">
1525
                                 <tr>
1526
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"phone"</span><span class="tAN"> type=</span><span class="tAV">"inferenceExtendedStringType"</span><span class="tEl">/&gt;</span></pre></td>
1527
                                 </tr>
1528
                              </table>
1529
                           </div>
1530
                        </td>
1531
                     </tr>
1532
                     <tr>
1533
                        <td class="firstColumn"><b>Schema location</b></td>
1534
                        <td>http://www.openaire.eu/schema/0.2/oaf-person-0.2.xsd</td>
1535
                     </tr>
1536
                  </tbody>
1537
               </table>
1538
            </td>
1539
            <td class="rt_lineRight"></td>
1540
         </tr>
1541
         <tr>
1542
            <td class="rt_cornerBottomLeft"></td>
1543
            <td class="rt_lineBottom"></td>
1544
            <td class="rt_cornerBottomRight"></td>
1545
         </tr>
1546
      </table><a id="person_nationality"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-person-0_2_xsd.html#person" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">person</a></b> / nationality</span></div>
1547
      <table class="rt">
1548
         <tr>
1549
            <td class="rt_cornerTopLeft"></td>
1550
            <td class="rt_lineTop"></td>
1551
            <td class="rt_cornerTopRight"></td>
1552
         </tr>
1553
         <tr>
1554
            <td class="rt_lineLeft"></td>
1555
            <td class="rt_content">
1556
               <table class="component">
1557
                  <tbody>
1558
                     <tr>
1559
                        <td class="firstColumn"><b>Namespace</b></td>
1560
                        <td>No namespace</td>
1561
                     </tr>
1562
                     <tr>
1563
                        <td class="firstColumn">
1564
                           <div class="floatLeft"><b>Annotations</b></div>
1565
                           <div class="floatRight"><input id="button_annotations_person_nationality" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_person_nationality');" class="control" /></div>
1566
                        </td>
1567
                        <td>
1568
                           <div id="annotations_person_nationality" style="display:block">
1569
                              <div class="annotation">
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="tT">Countries in ISO 3166-1 alpha-2.</span><span class="tEl">&lt;p</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">For allowed values check: https://services.openaire.eu/provision/mvc/vocabularies/dnet:countries</span><span class="tEl">&lt;/p&gt;</span><span class="tI">
1573
</span></pre></td>
1574
                                    </tr>
1575
                                 </table>
1576
                              </div>
1577
                           </div>
1578
                        </td>
1579
                     </tr>
1580
                     <tr>
1581
                        <td class="firstColumn">
1582
                           <div class="floatLeft"><b>Diagram</b></div>
1583
                           <div class="floatRight"><input id="button_diagram_person_nationality" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_person_nationality');" class="control" /></div>
1584
                        </td>
1585
                        <td class="diagram">
1586
                           <div id="diagram_person_nationality" style="display:block"><img alt="Diagram" border="0" src="img/oaf-person-0_2_xsd_Element_nationality.jpeg" usemap="#oaf-person-0_2_xsd_Element_nationality" /><map name="oaf-person-0_2_xsd_Element_nationality" id="oaf-person-0_2_xsd_Element_nationality">
1587
                                 <area alt="oaf-common-0_2_xsd.tmp#optionalClassSchemeAttrGroup" href="oaf-common-0_2_xsd.html#optionalClassSchemeAttrGroup" coords="166,81,390,107" />
1588
                                 <area alt="oaf-common-0_2_xsd.tmp#optionalInferenceAttrGroup" href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup" coords="166,125,370,151" />
1589
                                 <area alt="oaf-common-0_2_xsd.tmp#optionalClassedSchemedElement" href="oaf-common-0_2_xsd.html#optionalClassedSchemedElement" coords="138,3,365,25" /></map></div>
1590
                        </td>
1591
                     </tr>
1592
                     <tr>
1593
                        <td class="firstColumn"><b>Type</b></td>
1594
                        <td><b><a href="oaf-common-0_2_xsd.html#optionalClassedSchemedElement" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">optionalClassedSchemedElement</a></b></td>
1595
                     </tr>
1596
                     <tr>
1597
                        <td class="firstColumn">
1598
                           <div class="floatLeft"><b>Properties</b></div>
1599
                           <div class="floatRight"><input id="button_properties_person_nationality" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_person_nationality');" class="control" /></div>
1600
                        </td>
1601
                        <td>
1602
                           <div id="properties_person_nationality" style="display:block">
1603
                              <table class="propertiesTable">
1604
                                 <tr>
1605
                                    <td class="firstColumn">content:
1606
                                       
1607
                                    </td>
1608
                                    <td><b>complex</b></td>
1609
                                 </tr>
1610
                                 <tr>
1611
                                    <td class="firstColumn">mixed:
1612
                                       
1613
                                    </td>
1614
                                    <td><b>true</b></td>
1615
                                 </tr>
1616
                              </table>
1617
                           </div>
1618
                        </td>
1619
                     </tr>
1620
                     <tr>
1621
                        <td class="firstColumn"><b>Model</b></td>
1622
                        <td></td>
1623
                     </tr>
1624
                     <tr>
1625
                        <td class="firstColumn">
1626
                           <div class="floatLeft"><b>Attributes</b></div>
1627
                           <div class="floatRight"><input id="button_attributes_person_nationality" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_person_nationality');" class="control" /></div>
1628
                        </td>
1629
                        <td>
1630
                           <div id="attributes_person_nationality" style="display:block">
1631
                              <table class="attributesTable">
1632
                                 <thead>
1633
                                    <tr>
1634
                                       <th>QName</th>
1635
                                       <th>Type</th>
1636
                                       <th>Fixed</th>
1637
                                       <th>Default</th>
1638
                                       <th>Use</th>
1639
                                       <th>Annotation</th>
1640
                                    </tr>
1641
                                 </thead>
1642
                                 <tr>
1643
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalClassSchemeAttrGroup_classid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">classid</a></b></td>
1644
                                    <td><b>xs:string</b></td>
1645
                                    <td></td>
1646
                                    <td></td>
1647
                                    <td>optional</td>
1648
                                    <td>
1649
                                       <div class="annotation">
1650
                                          <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">
1651
                                             <tr>
1652
                                                <td width="100%"><pre><span class="tT">Identifier of the value in classname with respect</span><span class="tI">
1653
</span><span class="tT">to the controlled</span><span class="tI">
1654
</span><span class="tT">vocabulary with id = schemeid.</span></pre></td>
1655
                                             </tr>
1656
                                          </table>
1657
                                       </div>
1658
                                    </td>
1659
                                 </tr>
1660
                                 <tr>
1661
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalClassSchemeAttrGroup_classname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">classname</a></b></td>
1662
                                    <td><b>xs:string</b></td>
1663
                                    <td></td>
1664
                                    <td></td>
1665
                                    <td>optional</td>
1666
                                    <td>
1667
                                       <div class="annotation">
1668
                                          <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
1669
                                             <tr>
1670
                                                <td width="100%"><pre><span class="tT">A value from the controlled vocabulary identified</span><span class="tI">
1671
</span><span class="tT">by</span><span class="tI">
1672
</span><span class="tT">schemeid.</span></pre></td>
1673
                                             </tr>
1674
                                          </table>
1675
                                       </div>
1676
                                    </td>
1677
                                 </tr>
1678
                                 <tr>
1679
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferenceprovenance</a></b></td>
1680
                                    <td><b>xs:string</b></td>
1681
                                    <td></td>
1682
                                    <td></td>
1683
                                    <td>optional</td>
1684
                                    <td>
1685
                                       <div class="annotation">
1686
                                          <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">
1687
                                             <tr>
1688
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
1689
                                             </tr>
1690
                                          </table>
1691
                                       </div>
1692
                                    </td>
1693
                                 </tr>
1694
                                 <tr>
1695
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferred</a></b></td>
1696
                                    <td><b>xs:boolean</b></td>
1697
                                    <td></td>
1698
                                    <td></td>
1699
                                    <td>optional</td>
1700
                                    <td>
1701
                                       <div class="annotation">
1702
                                          <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">
1703
                                             <tr>
1704
                                                <td width="100%"><pre><span class="tT">True if this information has been inferred by the</span><span class="tI">
1705
</span><span class="tT">automatic inference</span><span class="tI">
1706
</span><span class="tT">algorithms run by OpenAIRE.</span></pre></td>
1707
                                             </tr>
1708
                                          </table>
1709
                                       </div>
1710
                                    </td>
1711
                                 </tr>
1712
                                 <tr>
1713
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalClassSchemeAttrGroup_schemeid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">schemeid</a></b></td>
1714
                                    <td><b>xs:string</b></td>
1715
                                    <td></td>
1716
                                    <td></td>
1717
                                    <td>optional</td>
1718
                                    <td>
1719
                                       <div class="annotation">
1720
                                          <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">
1721
                                             <tr>
1722
                                                <td width="100%"><pre><span class="tT">Identifier of the controlled vocabulary with name</span><span class="tI">
1723
</span><span class="tT">schemename. To see the classes included in the schema:</span><span class="tI">
1724
</span><span class="tT">https://services.openaire.eu/provision/mvc/vocabularies/schemeid</span></pre></td>
1725
                                             </tr>
1726
                                          </table>
1727
                                       </div>
1728
                                    </td>
1729
                                 </tr>
1730
                                 <tr>
1731
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalClassSchemeAttrGroup_schemename" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">schemename</a></b></td>
1732
                                    <td><b>xs:string</b></td>
1733
                                    <td></td>
1734
                                    <td></td>
1735
                                    <td>optional</td>
1736
                                    <td>
1737
                                       <div class="annotation">
1738
                                          <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">
1739
                                             <tr>
1740
                                                <td width="100%"><pre><span class="tT">Name of the controlled vocabulary.</span></pre></td>
1741
                                             </tr>
1742
                                          </table>
1743
                                       </div>
1744
                                    </td>
1745
                                 </tr>
1746
                                 <tr>
1747
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">trust</a></b></td>
1748
                                    <td><b>xs:string</b></td>
1749
                                    <td></td>
1750
                                    <td></td>
1751
                                    <td>optional</td>
1752
                                    <td>
1753
                                       <div class="annotation">
1754
                                          <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">
1755
                                             <tr>
1756
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range</span><span class="tI">
1757
</span><span class="tT">[0,1].</span><span class="tI">
1758
</span><span class="tT">More the value, more trustworthy is the information.</span></pre></td>
1759
                                             </tr>
1760
                                          </table>
1761
                                       </div>
1762
                                    </td>
1763
                                 </tr>
1764
                              </table>
1765
                           </div>
1766
                        </td>
1767
                     </tr>
1768
                     <tr>
1769
                        <td class="firstColumn">
1770
                           <div class="floatLeft"><b>Source</b></div>
1771
                           <div class="floatRight"><input id="button_source_person_nationality" type="image" src="img/btM.gif" value="-" onclick="switchState('source_person_nationality');" class="control" /></div>
1772
                        </td>
1773
                        <td>
1774
                           <div id="source_person_nationality" style="display:block">
1775
                              <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">
1776
                                 <tr>
1777
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"nationality"</span><span class="tAN"> type=</span><span class="tAV">"optionalClassedSchemedElement"</span><span class="tEl">&gt;</span><span class="tI">
1778
  </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
1779
    </span><span class="tEl">&lt;xs:documentation</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">Countries in ISO 3166-1 alpha-2.</span><span class="tI">
1780
      </span><span class="tEl">&lt;p</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">For allowed values check: https://services.openaire.eu/provision/mvc/vocabularies/dnet:countries</span><span class="tEl">&lt;/p&gt;</span><span class="tI">
1781
    </span><span class="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
1782
  </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
1783
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
1784
                                 </tr>
1785
                              </table>
1786
                           </div>
1787
                        </td>
1788
                     </tr>
1789
                     <tr>
1790
                        <td class="firstColumn"><b>Schema location</b></td>
1791
                        <td>http://www.openaire.eu/schema/0.2/oaf-person-0.2.xsd</td>
1792
                     </tr>
1793
                  </tbody>
1794
               </table>
1795
            </td>
1796
            <td class="rt_lineRight"></td>
1797
         </tr>
1798
         <tr>
1799
            <td class="rt_cornerBottomLeft"></td>
1800
            <td class="rt_lineBottom"></td>
1801
            <td class="rt_cornerBottomRight"></td>
1802
         </tr>
1803
      </table><a id="person_originalId"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-person-0_2_xsd.html#person" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">person</a></b> / originalId</span></div>
1804
      <table class="rt">
1805
         <tr>
1806
            <td class="rt_cornerTopLeft"></td>
1807
            <td class="rt_lineTop"></td>
1808
            <td class="rt_cornerTopRight"></td>
1809
         </tr>
1810
         <tr>
1811
            <td class="rt_lineLeft"></td>
1812
            <td class="rt_content">
1813
               <table class="component">
1814
                  <tbody>
1815
                     <tr>
1816
                        <td class="firstColumn"><b>Namespace</b></td>
1817
                        <td>No namespace</td>
1818
                     </tr>
1819
                     <tr>
1820
                        <td class="firstColumn">
1821
                           <div class="floatLeft"><b>Diagram</b></div>
1822
                           <div class="floatRight"><input id="button_diagram_person_originalId" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_person_originalId');" class="control" /></div>
1823
                        </td>
1824
                        <td class="diagram">
1825
                           <div id="diagram_person_originalId" style="display:block"><img alt="Diagram" border="0" src="img/oaf-person-0_2_xsd_Element_originalId.jpeg" usemap="#oaf-person-0_2_xsd_Element_originalId" /><map name="oaf-person-0_2_xsd_Element_originalId" id="oaf-person-0_2_xsd_Element_originalId">
1826
                                 <area alt="oaf-common-0_2_xsd.tmp#optionalInferenceAttrGroup" href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup" coords="141,160,345,186" />
1827
                                 <area alt="oaf-common-0_2_xsd.tmp#inferenceExtendedStringType" href="oaf-common-0_2_xsd.html#inferenceExtendedStringType" coords="113,3,322,25" /></map></div>
1828
                        </td>
1829
                     </tr>
1830
                     <tr>
1831
                        <td class="firstColumn"><b>Type</b></td>
1832
                        <td><b><a href="oaf-common-0_2_xsd.html#inferenceExtendedStringType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferenceExtendedStringType</a></b></td>
1833
                     </tr>
1834
                     <tr>
1835
                        <td class="firstColumn">
1836
                           <div class="floatLeft"><b>Properties</b></div>
1837
                           <div class="floatRight"><input id="button_properties_person_originalId" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_person_originalId');" class="control" /></div>
1838
                        </td>
1839
                        <td>
1840
                           <div id="properties_person_originalId" style="display:block">
1841
                              <table class="propertiesTable">
1842
                                 <tr>
1843
                                    <td class="firstColumn">content:
1844
                                       
1845
                                    </td>
1846
                                    <td><b>complex</b></td>
1847
                                 </tr>
1848
                                 <tr>
1849
                                    <td class="firstColumn">maxOccurs:
1850
                                       
1851
                                    </td>
1852
                                    <td><b>unbounded</b></td>
1853
                                 </tr>
1854
                                 <tr>
1855
                                    <td class="firstColumn">mixed:
1856
                                       
1857
                                    </td>
1858
                                    <td><b>true</b></td>
1859
                                 </tr>
1860
                              </table>
1861
                           </div>
1862
                        </td>
1863
                     </tr>
1864
                     <tr>
1865
                        <td class="firstColumn">
1866
                           <div class="floatLeft"><b>Attributes</b></div>
1867
                           <div class="floatRight"><input id="button_attributes_person_originalId" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_person_originalId');" class="control" /></div>
1868
                        </td>
1869
                        <td>
1870
                           <div id="attributes_person_originalId" style="display:block">
1871
                              <table class="attributesTable">
1872
                                 <thead>
1873
                                    <tr>
1874
                                       <th>QName</th>
1875
                                       <th>Type</th>
1876
                                       <th>Fixed</th>
1877
                                       <th>Default</th>
1878
                                       <th>Use</th>
1879
                                       <th>Annotation</th>
1880
                                    </tr>
1881
                                 </thead>
1882
                                 <tr>
1883
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferenceprovenance</a></b></td>
1884
                                    <td><b>xs:string</b></td>
1885
                                    <td></td>
1886
                                    <td></td>
1887
                                    <td>optional</td>
1888
                                    <td>
1889
                                       <div class="annotation">
1890
                                          <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">
1891
                                             <tr>
1892
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
1893
                                             </tr>
1894
                                          </table>
1895
                                       </div>
1896
                                    </td>
1897
                                 </tr>
1898
                                 <tr>
1899
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferred</a></b></td>
1900
                                    <td><b>xs:boolean</b></td>
1901
                                    <td></td>
1902
                                    <td></td>
1903
                                    <td>optional</td>
1904
                                    <td>
1905
                                       <div class="annotation">
1906
                                          <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">
1907
                                             <tr>
1908
                                                <td width="100%"><pre><span class="tT">True if this information has been inferred by the</span><span class="tI">
1909
</span><span class="tT">automatic inference</span><span class="tI">
1910
</span><span class="tT">algorithms run by OpenAIRE.</span></pre></td>
1911
                                             </tr>
1912
                                          </table>
1913
                                       </div>
1914
                                    </td>
1915
                                 </tr>
1916
                                 <tr>
1917
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">trust</a></b></td>
1918
                                    <td><b>xs:string</b></td>
1919
                                    <td></td>
1920
                                    <td></td>
1921
                                    <td>optional</td>
1922
                                    <td>
1923
                                       <div class="annotation">
1924
                                          <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">
1925
                                             <tr>
1926
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range</span><span class="tI">
1927
</span><span class="tT">[0,1].</span><span class="tI">
1928
</span><span class="tT">More the value, more trustworthy is the information.</span></pre></td>
1929
                                             </tr>
1930
                                          </table>
1931
                                       </div>
1932
                                    </td>
1933
                                 </tr>
1934
                              </table>
1935
                           </div>
1936
                        </td>
1937
                     </tr>
1938
                     <tr>
1939
                        <td class="firstColumn">
1940
                           <div class="floatLeft"><b>Source</b></div>
1941
                           <div class="floatRight"><input id="button_source_person_originalId" type="image" src="img/btM.gif" value="-" onclick="switchState('source_person_originalId');" class="control" /></div>
1942
                        </td>
1943
                        <td>
1944
                           <div id="source_person_originalId" style="display:block">
1945
                              <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">
1946
                                 <tr>
1947
                                    <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">"inferenceExtendedStringType"</span><span class="tAN"> maxOccurs=</span><span class="tAV">"unbounded"</span><span class="tEl">/&gt;</span></pre></td>
1948
                                 </tr>
1949
                              </table>
1950
                           </div>
1951
                        </td>
1952
                     </tr>
1953
                     <tr>
1954
                        <td class="firstColumn"><b>Schema location</b></td>
1955
                        <td>http://www.openaire.eu/schema/0.2/oaf-person-0.2.xsd</td>
1956
                     </tr>
1957
                  </tbody>
1958
               </table>
1959
            </td>
1960
            <td class="rt_lineRight"></td>
1961
         </tr>
1962
         <tr>
1963
            <td class="rt_cornerBottomLeft"></td>
1964
            <td class="rt_lineBottom"></td>
1965
            <td class="rt_cornerBottomRight"></td>
1966
         </tr>
1967
      </table><a id="person_collectedfrom"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-person-0_2_xsd.html#person" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">person</a></b> / collectedfrom</span></div>
1968
      <table class="rt">
1969
         <tr>
1970
            <td class="rt_cornerTopLeft"></td>
1971
            <td class="rt_lineTop"></td>
1972
            <td class="rt_cornerTopRight"></td>
1973
         </tr>
1974
         <tr>
1975
            <td class="rt_lineLeft"></td>
1976
            <td class="rt_content">
1977
               <table class="component">
1978
                  <tbody>
1979
                     <tr>
1980
                        <td class="firstColumn"><b>Namespace</b></td>
1981
                        <td>No namespace</td>
1982
                     </tr>
1983
                     <tr>
1984
                        <td class="firstColumn">
1985
                           <div class="floatLeft"><b>Annotations</b></div>
1986
                           <div class="floatRight"><input id="button_annotations_person_collectedfrom" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_person_collectedfrom');" class="control" /></div>
1987
                        </td>
1988
                        <td>
1989
                           <div id="annotations_person_collectedfrom" style="display:block">
1990
                              <div class="annotation">
1991
                                 <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">
1992
                                    <tr>
1993
                                       <td width="100%"><pre><span class="tT">Identifier and name of the datasource from which</span><span class="tI">
1994
</span><span class="tT">this person has been</span><span class="tI">
1995
</span><span class="tT">collected from.</span></pre></td>
1996
                                    </tr>
1997
                                 </table>
1998
                              </div>
1999
                           </div>
2000
                        </td>
2001
                     </tr>
2002
                     <tr>
2003
                        <td class="firstColumn">
2004
                           <div class="floatLeft"><b>Diagram</b></div>
2005
                           <div class="floatRight"><input id="button_diagram_person_collectedfrom" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_person_collectedfrom');" class="control" /></div>
2006
                        </td>
2007
                        <td class="diagram">
2008
                           <div id="diagram_person_collectedfrom" style="display:block"><img alt="Diagram" border="0" src="img/oaf-person-0_2_xsd_Element_collectedfrom.jpeg" usemap="#oaf-person-0_2_xsd_Element_collectedfrom" /><map name="oaf-person-0_2_xsd_Element_collectedfrom" id="oaf-person-0_2_xsd_Element_collectedfrom">
2009
                                 <area alt="oaf-common-0_2_xsd.tmp#namedIdElement_id" href="oaf-common-0_2_xsd.html#namedIdElement_id" coords="181,78,242,102" />
2010
                                 <area alt="oaf-common-0_2_xsd.tmp#namedIdElement_name" href="oaf-common-0_2_xsd.html#namedIdElement_name" coords="181,112,247,136" />
2011
                                 <area alt="oaf-common-0_2_xsd.tmp#optionalInferenceAttrGroup" href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup" coords="184,149,388,175" />
2012
                                 <area alt="oaf-common-0_2_xsd.tmp#namedIdElement" href="oaf-common-0_2_xsd.html#namedIdElement" coords="156,3,295,25" /></map></div>
2013
                        </td>
2014
                     </tr>
2015
                     <tr>
2016
                        <td class="firstColumn"><b>Type</b></td>
2017
                        <td><b><a href="oaf-common-0_2_xsd.html#namedIdElement" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">namedIdElement</a></b></td>
2018
                     </tr>
2019
                     <tr>
2020
                        <td class="firstColumn">
2021
                           <div class="floatLeft"><b>Properties</b></div>
2022
                           <div class="floatRight"><input id="button_properties_person_collectedfrom" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_person_collectedfrom');" class="control" /></div>
2023
                        </td>
2024
                        <td>
2025
                           <div id="properties_person_collectedfrom" style="display:block">
2026
                              <table class="propertiesTable">
2027
                                 <tr>
2028
                                    <td class="firstColumn">content:
2029
                                       
2030
                                    </td>
2031
                                    <td><b>complex</b></td>
2032
                                 </tr>
2033
                                 <tr>
2034
                                    <td class="firstColumn">maxOccurs:
2035
                                       
2036
                                    </td>
2037
                                    <td><b>unbounded</b></td>
2038
                                 </tr>
2039
                              </table>
2040
                           </div>
2041
                        </td>
2042
                     </tr>
2043
                     <tr>
2044
                        <td class="firstColumn">
2045
                           <div class="floatLeft"><b>Attributes</b></div>
2046
                           <div class="floatRight"><input id="button_attributes_person_collectedfrom" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_person_collectedfrom');" class="control" /></div>
2047
                        </td>
2048
                        <td>
2049
                           <div id="attributes_person_collectedfrom" style="display:block">
2050
                              <table class="attributesTable">
2051
                                 <thead>
2052
                                    <tr>
2053
                                       <th>QName</th>
2054
                                       <th>Type</th>
2055
                                       <th>Fixed</th>
2056
                                       <th>Default</th>
2057
                                       <th>Use</th>
2058
                                       <th>Annotation</th>
2059
                                    </tr>
2060
                                 </thead>
2061
                                 <tr>
2062
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#namedIdElement_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">id</a></b></td>
2063
                                    <td></td>
2064
                                    <td></td>
2065
                                    <td></td>
2066
                                    <td>required</td>
2067
                                    <td>
2068
                                       <div class="annotation"></div>
2069
                                    </td>
2070
                                 </tr>
2071
                                 <tr>
2072
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferenceprovenance</a></b></td>
2073
                                    <td><b>xs:string</b></td>
2074
                                    <td></td>
2075
                                    <td></td>
2076
                                    <td>optional</td>
2077
                                    <td>
2078
                                       <div class="annotation">
2079
                                          <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">
2080
                                             <tr>
2081
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
2082
                                             </tr>
2083
                                          </table>
2084
                                       </div>
2085
                                    </td>
2086
                                 </tr>
2087
                                 <tr>
2088
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferred</a></b></td>
2089
                                    <td><b>xs:boolean</b></td>
2090
                                    <td></td>
2091
                                    <td></td>
2092
                                    <td>optional</td>
2093
                                    <td>
2094
                                       <div class="annotation">
2095
                                          <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">
2096
                                             <tr>
2097
                                                <td width="100%"><pre><span class="tT">True if this information has been inferred by the</span><span class="tI">
2098
</span><span class="tT">automatic inference</span><span class="tI">
2099
</span><span class="tT">algorithms run by OpenAIRE.</span></pre></td>
2100
                                             </tr>
2101
                                          </table>
2102
                                       </div>
2103
                                    </td>
2104
                                 </tr>
2105
                                 <tr>
2106
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#namedIdElement_name" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">name</a></b></td>
2107
                                    <td></td>
2108
                                    <td></td>
2109
                                    <td></td>
2110
                                    <td>required</td>
2111
                                    <td>
2112
                                       <div class="annotation"></div>
2113
                                    </td>
2114
                                 </tr>
2115
                                 <tr>
2116
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">trust</a></b></td>
2117
                                    <td><b>xs:string</b></td>
2118
                                    <td></td>
2119
                                    <td></td>
2120
                                    <td>optional</td>
2121
                                    <td>
2122
                                       <div class="annotation">
2123
                                          <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">
2124
                                             <tr>
2125
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range</span><span class="tI">
2126
</span><span class="tT">[0,1].</span><span class="tI">
2127
</span><span class="tT">More the value, more trustworthy is the information.</span></pre></td>
2128
                                             </tr>
2129
                                          </table>
2130
                                       </div>
2131
                                    </td>
2132
                                 </tr>
2133
                              </table>
2134
                           </div>
2135
                        </td>
2136
                     </tr>
2137
                     <tr>
2138
                        <td class="firstColumn">
2139
                           <div class="floatLeft"><b>Source</b></div>
2140
                           <div class="floatRight"><input id="button_source_person_collectedfrom" type="image" src="img/btM.gif" value="-" onclick="switchState('source_person_collectedfrom');" class="control" /></div>
2141
                        </td>
2142
                        <td>
2143
                           <div id="source_person_collectedfrom" style="display:block">
2144
                              <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">
2145
                                 <tr>
2146
                                    <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">"namedIdElement"</span><span class="tAN"> maxOccurs=</span><span class="tAV">"unbounded"</span><span class="tEl">&gt;</span><span class="tI">
2147
  </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
2148
    </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 person has been collected from.</span><span class="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
2149
  </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
2150
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
2151
                                 </tr>
2152
                              </table>
2153
                           </div>
2154
                        </td>
2155
                     </tr>
2156
                     <tr>
2157
                        <td class="firstColumn"><b>Schema location</b></td>
2158
                        <td>http://www.openaire.eu/schema/0.2/oaf-person-0.2.xsd</td>
2159
                     </tr>
2160
                  </tbody>
2161
               </table>
2162
            </td>
2163
            <td class="rt_lineRight"></td>
2164
         </tr>
2165
         <tr>
2166
            <td class="rt_cornerBottomLeft"></td>
2167
            <td class="rt_lineBottom"></td>
2168
            <td class="rt_cornerBottomRight"></td>
2169
         </tr>
2170
      </table><a id="person_pid"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-person-0_2_xsd.html#person" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">person</a></b> / pid</span></div>
2171
      <table class="rt">
2172
         <tr>
2173
            <td class="rt_cornerTopLeft"></td>
2174
            <td class="rt_lineTop"></td>
2175
            <td class="rt_cornerTopRight"></td>
2176
         </tr>
2177
         <tr>
2178
            <td class="rt_lineLeft"></td>
2179
            <td class="rt_content">
2180
               <table class="component">
2181
                  <tbody>
2182
                     <tr>
2183
                        <td class="firstColumn"><b>Namespace</b></td>
2184
                        <td>No namespace</td>
2185
                     </tr>
2186
                     <tr>
2187
                        <td class="firstColumn">
2188
                           <div class="floatLeft"><b>Diagram</b></div>
2189
                           <div class="floatRight"><input id="button_diagram_person_pid" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_person_pid');" class="control" /></div>
2190
                        </td>
2191
                        <td class="diagram">
2192
                           <div id="diagram_person_pid" style="display:block"><img alt="Diagram" border="0" src="img/oaf-person-0_2_xsd_Element_pid.jpeg" usemap="#oaf-person-0_2_xsd_Element_pid" /><map name="oaf-person-0_2_xsd_Element_pid" id="oaf-person-0_2_xsd_Element_pid">
2193
                                 <area alt="oaf-common-0_2_xsd.tmp#optionalClassSchemeAttrGroup" href="oaf-common-0_2_xsd.html#optionalClassSchemeAttrGroup" coords="114,81,338,107" />
2194
                                 <area alt="oaf-common-0_2_xsd.tmp#optionalInferenceAttrGroup" href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup" coords="114,125,318,151" />
2195
                                 <area alt="oaf-common-0_2_xsd.tmp#optionalClassedSchemedElement" href="oaf-common-0_2_xsd.html#optionalClassedSchemedElement" coords="86,3,313,25" /></map></div>
2196
                        </td>
2197
                     </tr>
2198
                     <tr>
2199
                        <td class="firstColumn"><b>Type</b></td>
2200
                        <td><b><a href="oaf-common-0_2_xsd.html#optionalClassedSchemedElement" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">optionalClassedSchemedElement</a></b></td>
2201
                     </tr>
2202
                     <tr>
2203
                        <td class="firstColumn">
2204
                           <div class="floatLeft"><b>Properties</b></div>
2205
                           <div class="floatRight"><input id="button_properties_person_pid" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_person_pid');" class="control" /></div>
2206
                        </td>
2207
                        <td>
2208
                           <div id="properties_person_pid" style="display:block">
2209
                              <table class="propertiesTable">
2210
                                 <tr>
2211
                                    <td class="firstColumn">content:
2212
                                       
2213
                                    </td>
2214
                                    <td><b>complex</b></td>
2215
                                 </tr>
2216
                                 <tr>
2217
                                    <td class="firstColumn">mixed:
2218
                                       
2219
                                    </td>
2220
                                    <td><b>true</b></td>
2221
                                 </tr>
2222
                              </table>
2223
                           </div>
2224
                        </td>
2225
                     </tr>
2226
                     <tr>
2227
                        <td class="firstColumn"><b>Model</b></td>
2228
                        <td></td>
2229
                     </tr>
2230
                     <tr>
2231
                        <td class="firstColumn">
2232
                           <div class="floatLeft"><b>Attributes</b></div>
2233
                           <div class="floatRight"><input id="button_attributes_person_pid" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_person_pid');" class="control" /></div>
2234
                        </td>
2235
                        <td>
2236
                           <div id="attributes_person_pid" style="display:block">
2237
                              <table class="attributesTable">
2238
                                 <thead>
2239
                                    <tr>
2240
                                       <th>QName</th>
2241
                                       <th>Type</th>
2242
                                       <th>Fixed</th>
2243
                                       <th>Default</th>
2244
                                       <th>Use</th>
2245
                                       <th>Annotation</th>
2246
                                    </tr>
2247
                                 </thead>
2248
                                 <tr>
2249
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalClassSchemeAttrGroup_classid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">classid</a></b></td>
2250
                                    <td><b>xs:string</b></td>
2251
                                    <td></td>
2252
                                    <td></td>
2253
                                    <td>optional</td>
2254
                                    <td>
2255
                                       <div class="annotation">
2256
                                          <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">
2257
                                             <tr>
2258
                                                <td width="100%"><pre><span class="tT">Identifier of the value in classname with respect</span><span class="tI">
2259
</span><span class="tT">to the controlled</span><span class="tI">
2260
</span><span class="tT">vocabulary with id = schemeid.</span></pre></td>
2261
                                             </tr>
2262
                                          </table>
2263
                                       </div>
2264
                                    </td>
2265
                                 </tr>
2266
                                 <tr>
2267
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalClassSchemeAttrGroup_classname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">classname</a></b></td>
2268
                                    <td><b>xs:string</b></td>
2269
                                    <td></td>
2270
                                    <td></td>
2271
                                    <td>optional</td>
2272
                                    <td>
2273
                                       <div class="annotation">
2274
                                          <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
2275
                                             <tr>
2276
                                                <td width="100%"><pre><span class="tT">A value from the controlled vocabulary identified</span><span class="tI">
2277
</span><span class="tT">by</span><span class="tI">
2278
</span><span class="tT">schemeid.</span></pre></td>
2279
                                             </tr>
2280
                                          </table>
2281
                                       </div>
2282
                                    </td>
2283
                                 </tr>
2284
                                 <tr>
2285
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferenceprovenance</a></b></td>
2286
                                    <td><b>xs:string</b></td>
2287
                                    <td></td>
2288
                                    <td></td>
2289
                                    <td>optional</td>
2290
                                    <td>
2291
                                       <div class="annotation">
2292
                                          <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">
2293
                                             <tr>
2294
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
2295
                                             </tr>
2296
                                          </table>
2297
                                       </div>
2298
                                    </td>
2299
                                 </tr>
2300
                                 <tr>
2301
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferred</a></b></td>
2302
                                    <td><b>xs:boolean</b></td>
2303
                                    <td></td>
2304
                                    <td></td>
2305
                                    <td>optional</td>
2306
                                    <td>
2307
                                       <div class="annotation">
2308
                                          <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">
2309
                                             <tr>
2310
                                                <td width="100%"><pre><span class="tT">True if this information has been inferred by the</span><span class="tI">
2311
</span><span class="tT">automatic inference</span><span class="tI">
2312
</span><span class="tT">algorithms run by OpenAIRE.</span></pre></td>
2313
                                             </tr>
2314
                                          </table>
2315
                                       </div>
2316
                                    </td>
2317
                                 </tr>
2318
                                 <tr>
2319
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalClassSchemeAttrGroup_schemeid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">schemeid</a></b></td>
2320
                                    <td><b>xs:string</b></td>
2321
                                    <td></td>
2322
                                    <td></td>
2323
                                    <td>optional</td>
2324
                                    <td>
2325
                                       <div class="annotation">
2326
                                          <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">
2327
                                             <tr>
2328
                                                <td width="100%"><pre><span class="tT">Identifier of the controlled vocabulary with name</span><span class="tI">
2329
</span><span class="tT">schemename. To see the classes included in the schema:</span><span class="tI">
2330
</span><span class="tT">https://services.openaire.eu/provision/mvc/vocabularies/schemeid</span></pre></td>
2331
                                             </tr>
2332
                                          </table>
2333
                                       </div>
2334
                                    </td>
2335
                                 </tr>
2336
                                 <tr>
2337
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalClassSchemeAttrGroup_schemename" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">schemename</a></b></td>
2338
                                    <td><b>xs:string</b></td>
2339
                                    <td></td>
2340
                                    <td></td>
2341
                                    <td>optional</td>
2342
                                    <td>
2343
                                       <div class="annotation">
2344
                                          <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">
2345
                                             <tr>
2346
                                                <td width="100%"><pre><span class="tT">Name of the controlled vocabulary.</span></pre></td>
2347
                                             </tr>
2348
                                          </table>
2349
                                       </div>
2350
                                    </td>
2351
                                 </tr>
2352
                                 <tr>
2353
                                    <td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#optionalInferenceAttrGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">trust</a></b></td>
2354
                                    <td><b>xs:string</b></td>
2355
                                    <td></td>
2356
                                    <td></td>
2357
                                    <td>optional</td>
2358
                                    <td>
2359
                                       <div class="annotation">
2360
                                          <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">
2361
                                             <tr>
2362
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range</span><span class="tI">
2363
</span><span class="tT">[0,1].</span><span class="tI">
2364
</span><span class="tT">More the value, more trustworthy is the information.</span></pre></td>
2365
                                             </tr>
2366
                                          </table>
2367
                                       </div>
2368
                                    </td>
2369
                                 </tr>
2370
                              </table>
2371
                           </div>
2372
                        </td>
2373
                     </tr>
2374
                     <tr>
2375
                        <td class="firstColumn">
2376
                           <div class="floatLeft"><b>Source</b></div>
2377
                           <div class="floatRight"><input id="button_source_person_pid" type="image" src="img/btM.gif" value="-" onclick="switchState('source_person_pid');" class="control" /></div>
2378
                        </td>
2379
                        <td>
2380
                           <div id="source_person_pid" style="display:block">
2381
                              <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">
2382
                                 <tr>
2383
                                    <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">"optionalClassedSchemedElement"</span><span class="tEl">/&gt;</span></pre></td>
2384
                                 </tr>
2385
                              </table>
2386
                           </div>
2387
                        </td>
2388
                     </tr>
2389
                     <tr>
2390
                        <td class="firstColumn"><b>Schema location</b></td>
2391
                        <td>http://www.openaire.eu/schema/0.2/oaf-person-0.2.xsd</td>
2392
                     </tr>
2393
                  </tbody>
2394
               </table>
2395
            </td>
2396
            <td class="rt_lineRight"></td>
2397
         </tr>
2398
         <tr>
2399
            <td class="rt_cornerBottomLeft"></td>
2400
            <td class="rt_lineBottom"></td>
2401
            <td class="rt_cornerBottomRight"></td>
2402
         </tr>
2403
      </table><a id="person_datainfo"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-person-0_2_xsd.html#person" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">person</a></b> / datainfo</span></div>
2404
      <table class="rt">
2405
         <tr>
2406
            <td class="rt_cornerTopLeft"></td>
2407
            <td class="rt_lineTop"></td>
2408
            <td class="rt_cornerTopRight"></td>
2409
         </tr>
2410
         <tr>
2411
            <td class="rt_lineLeft"></td>
2412
            <td class="rt_content">
2413
               <table class="component">
2414
                  <tbody>
2415
                     <tr>
2416
                        <td class="firstColumn"><b>Namespace</b></td>
2417
                        <td>No namespace</td>
2418
                     </tr>
2419
                     <tr>
2420
                        <td class="firstColumn">
2421
                           <div class="floatLeft"><b>Diagram</b></div>
2422
                           <div class="floatRight"><input id="button_diagram_person_datainfo" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_person_datainfo');" class="control" /></div>
2423
                        </td>
2424
                        <td class="diagram">
2425
                           <div id="diagram_person_datainfo" style="display:block"><img alt="Diagram" border="0" src="img/oaf-person-0_2_xsd_Element_datainfo.jpeg" usemap="#oaf-person-0_2_xsd_Element_datainfo" /><map name="oaf-person-0_2_xsd_Element_datainfo" id="oaf-person-0_2_xsd_Element_datainfo">
2426
                                 <area alt="oaf-common-0_2_xsd.tmp#datainfoType_inferred" href="oaf-common-0_2_xsd.html#datainfoType_inferred" coords="209,40,283,64" />
2427
                                 <area alt="oaf-common-0_2_xsd.tmp#datainfoType_deletedbyinference" href="oaf-common-0_2_xsd.html#datainfoType_deletedbyinference" coords="209,117,342,141" />
2428
                                 <area alt="oaf-common-0_2_xsd.tmp#datainfoType_trust" href="oaf-common-0_2_xsd.html#datainfoType_trust" coords="209,194,266,218" />
2429
                                 <area alt="oaf-common-0_2_xsd.tmp#datainfoType_inferenceprovenance" href="oaf-common-0_2_xsd.html#datainfoType_inferenceprovenance" coords="209,284,353,308" />
2430
                                 <area alt="oaf-common-0_2_xsd.tmp#datainfoType_provenanceaction" href="oaf-common-0_2_xsd.html#datainfoType_provenanceaction" coords="209,348,336,372" />
2431
                                 <area alt="oaf-common-0_2_xsd.tmp#datainfoType" href="oaf-common-0_2_xsd.html#datainfoType" coords="127,3,248,25" /></map></div>
2432
                        </td>
2433
                     </tr>
2434
                     <tr>
2435
                        <td class="firstColumn"><b>Type</b></td>
2436
                        <td><b><a href="oaf-common-0_2_xsd.html#datainfoType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">datainfoType</a></b></td>
2437
                     </tr>
2438
                     <tr>
2439
                        <td class="firstColumn">
2440
                           <div class="floatLeft"><b>Properties</b></div>
2441
                           <div class="floatRight"><input id="button_properties_person_datainfo" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_person_datainfo');" class="control" /></div>
2442
                        </td>
2443
                        <td>
2444
                           <div id="properties_person_datainfo" style="display:block">
2445
                              <table class="propertiesTable">
2446
                                 <tr>
2447
                                    <td class="firstColumn">content:
2448
                                       
2449
                                    </td>
2450
                                    <td><b>complex</b></td>
2451
                                 </tr>
2452
                              </table>
2453
                           </div>
2454
                        </td>
2455
                     </tr>
2456
                     <tr>
2457
                        <td class="firstColumn"><b>Model</b></td>
2458
                        <td><b><a href="oaf-common-0_2_xsd.html#datainfoType_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferred</a></b> | <b><a href="oaf-common-0_2_xsd.html#datainfoType_deletedbyinference" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">deletedbyinference</a></b> | <b><a href="oaf-common-0_2_xsd.html#datainfoType_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">trust</a></b> | <b><a href="oaf-common-0_2_xsd.html#datainfoType_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferenceprovenance</a></b> | <b><a href="oaf-common-0_2_xsd.html#datainfoType_provenanceaction" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">provenanceaction</a></b></td>
2459
                     </tr>
2460
                     <tr>
2461
                        <td class="firstColumn"><b>Children</b></td>
2462
                        <td><b><a href="oaf-common-0_2_xsd.html#datainfoType_deletedbyinference" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">deletedbyinference</a></b>, <b><a href="oaf-common-0_2_xsd.html#datainfoType_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferenceprovenance</a></b>, <b><a href="oaf-common-0_2_xsd.html#datainfoType_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">inferred</a></b>, <b><a href="oaf-common-0_2_xsd.html#datainfoType_provenanceaction" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">provenanceaction</a></b>, <b><a href="oaf-common-0_2_xsd.html#datainfoType_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">trust</a></b></td>
2463
                     </tr>
2464
                     <tr>
2465
                        <td class="firstColumn">
2466
                           <div class="floatLeft"><b>Instance</b></div>
2467
                           <div class="floatRight"><input id="button_instance_person_datainfo" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_person_datainfo');" class="control" /></div>
2468
                        </td>
2469
                        <td>
2470
                           <div id="instance_person_datainfo" style="display:block">
2471
                              <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">
2472
                                 <tr>
2473
                                    <td width="100%"><pre><span class="tEl">&lt;datainfo</span><span class="tEl">&gt;</span><span class="tI">
2474
  </span><span class="tEl">&lt;inferred</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/inferred&gt;</span><span class="tI">
2475
  </span><span class="tEl">&lt;deletedbyinference</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/deletedbyinference&gt;</span><span class="tI">
2476
  </span><span class="tEl">&lt;trust</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/trust&gt;</span><span class="tI">
2477
  </span><span class="tEl">&lt;inferenceprovenance</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/inferenceprovenance&gt;</span><span class="tI">
2478
  </span><span class="tEl">&lt;provenanceaction</span><span class="tT"> </span><span class="tAN">classid=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">classname=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">inferenceprovenance=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">inferred=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">schemeid=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">schemename=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">trust=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/provenanceaction&gt;</span><span class="tI">
2479
</span><span class="tEl">&lt;/datainfo&gt;</span></pre></td>
2480
                                 </tr>
2481
                              </table>
2482
                           </div>
2483
                        </td>
2484
                     </tr>
2485
                     <tr>
2486
                        <td class="firstColumn">
2487
                           <div class="floatLeft"><b>Source</b></div>
2488
                           <div class="floatRight"><input id="button_source_person_datainfo" type="image" src="img/btM.gif" value="-" onclick="switchState('source_person_datainfo');" class="control" /></div>
2489
                        </td>
2490
                        <td>
2491
                           <div id="source_person_datainfo" style="display:block">
2492
                              <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">
2493
                                 <tr>
2494
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"datainfo"</span><span class="tAN"> type=</span><span class="tAV">"datainfoType"</span><span class="tEl">/&gt;</span></pre></td>
2495
                                 </tr>
2496
                              </table>
2497
                           </div>
2498
                        </td>
2499
                     </tr>
2500
                     <tr>
2501
                        <td class="firstColumn"><b>Schema location</b></td>
2502
                        <td>http://www.openaire.eu/schema/0.2/oaf-person-0.2.xsd</td>
2503
                     </tr>
2504
                  </tbody>
2505
               </table>
2506
            </td>
2507
            <td class="rt_lineRight"></td>
2508
         </tr>
2509
         <tr>
2510
            <td class="rt_cornerBottomLeft"></td>
2511
            <td class="rt_lineBottom"></td>
2512
            <td class="rt_cornerBottomRight"></td>
2513
         </tr>
2514
      </table><a id="person_rels"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-person-0_2_xsd.html#person" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">person</a></b> / rels</span></div>
2515
      <table class="rt">
2516
         <tr>
2517
            <td class="rt_cornerTopLeft"></td>
2518
            <td class="rt_lineTop"></td>
2519
            <td class="rt_cornerTopRight"></td>
2520
         </tr>
2521
         <tr>
2522
            <td class="rt_lineLeft"></td>
2523
            <td class="rt_content">
2524
               <table class="component">
2525
                  <tbody>
2526
                     <tr>
2527
                        <td class="firstColumn"><b>Namespace</b></td>
2528
                        <td>No namespace</td>
2529
                     </tr>
2530
                     <tr>
2531
                        <td class="firstColumn">
2532
                           <div class="floatLeft"><b>Annotations</b></div>
2533
                           <div class="floatRight"><input id="button_annotations_person_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_person_rels');" class="control" /></div>
2534
                        </td>
2535
                        <td>
2536
                           <div id="annotations_person_rels" style="display:block">
2537
                              <div class="annotation">
2538
                                 <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">
2539
                                    <tr>
2540
                                       <td width="100%"><pre><span class="tT">Relationships to other entities.</span></pre></td>
2541
                                    </tr>
2542
                                 </table>
2543
                              </div>
2544
                           </div>
2545
                        </td>
2546
                     </tr>
2547
                     <tr>
2548
                        <td class="firstColumn">
2549
                           <div class="floatLeft"><b>Diagram</b></div>
2550
                           <div class="floatRight"><input id="button_diagram_person_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_person_rels');" class="control" /></div>
2551
                        </td>
2552
                        <td class="diagram">
2553
                           <div id="diagram_person_rels" style="display:block"><img alt="Diagram" border="0" src="img/oaf-person-0_2_xsd_Element_rels.jpeg" usemap="#oaf-person-0_2_xsd_Element_rels" /><map name="oaf-person-0_2_xsd_Element_rels" id="oaf-person-0_2_xsd_Element_rels">
2554
                                 <area alt="oaf-common-0_2_xsd.tmp#relsType_rel" href="oaf-common-0_2_xsd.html#relsType_rel" coords="209,44,264,68" />
2555
                                 <area alt="oaf-common-0_2_xsd.tmp#relsType" href="oaf-common-0_2_xsd.html#relsType" coords="127,3,224,25" /></map></div>
2556
                        </td>
2557
                     </tr>
2558
                     <tr>
2559
                        <td class="firstColumn"><b>Type</b></td>
2560
                        <td><b><a href="oaf-common-0_2_xsd.html#relsType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">relsType</a></b></td>
2561
                     </tr>
2562
                     <tr>
2563
                        <td class="firstColumn">
2564
                           <div class="floatLeft"><b>Properties</b></div>
2565
                           <div class="floatRight"><input id="button_properties_person_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_person_rels');" class="control" /></div>
2566
                        </td>
2567
                        <td>
2568
                           <div id="properties_person_rels" style="display:block">
2569
                              <table class="propertiesTable">
2570
                                 <tr>
2571
                                    <td class="firstColumn">content:
2572
                                       
2573
                                    </td>
2574
                                    <td><b>complex</b></td>
2575
                                 </tr>
2576
                              </table>
2577
                           </div>
2578
                        </td>
2579
                     </tr>
2580
                     <tr>
2581
                        <td class="firstColumn"><b>Model</b></td>
2582
                        <td><b><a href="oaf-common-0_2_xsd.html#relsType_rel" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">rel{0,1}</a></b></td>
2583
                     </tr>
2584
                     <tr>
2585
                        <td class="firstColumn"><b>Children</b></td>
2586
                        <td><b><a href="oaf-common-0_2_xsd.html#relsType_rel" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">rel</a></b></td>
2587
                     </tr>
2588
                     <tr>
2589
                        <td class="firstColumn">
2590
                           <div class="floatLeft"><b>Instance</b></div>
2591
                           <div class="floatRight"><input id="button_instance_person_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_person_rels');" class="control" /></div>
2592
                        </td>
2593
                        <td>
2594
                           <div id="instance_person_rels" style="display:block">
2595
                              <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">
2596
                                 <tr>
2597
                                    <td width="100%"><pre><span class="tEl">&lt;rels</span><span class="tEl">&gt;</span><span class="tI">
2598
  </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">
2599
</span><span class="tEl">&lt;/rels&gt;</span></pre></td>
2600
                                 </tr>
2601
                              </table>
2602
                           </div>
2603
                        </td>
2604
                     </tr>
2605
                     <tr>
2606
                        <td class="firstColumn">
2607
                           <div class="floatLeft"><b>Source</b></div>
2608
                           <div class="floatRight"><input id="button_source_person_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('source_person_rels');" class="control" /></div>
2609
                        </td>
2610
                        <td>
2611
                           <div id="source_person_rels" style="display:block">
2612
                              <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">
2613
                                 <tr>
2614
                                    <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">
2615
  </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
2616
    </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">
2617
  </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
2618
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
2619
                                 </tr>
2620
                              </table>
2621
                           </div>
2622
                        </td>
2623
                     </tr>
2624
                     <tr>
2625
                        <td class="firstColumn"><b>Schema location</b></td>
2626
                        <td>http://www.openaire.eu/schema/0.2/oaf-person-0.2.xsd</td>
2627
                     </tr>
2628
                  </tbody>
2629
               </table>
2630
            </td>
2631
            <td class="rt_lineRight"></td>
2632
         </tr>
2633
         <tr>
2634
            <td class="rt_cornerBottomLeft"></td>
2635
            <td class="rt_lineBottom"></td>
2636
            <td class="rt_cornerBottomRight"></td>
2637
         </tr>
2638
      </table><a id="person_children"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-person-0_2_xsd.html#person" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">person</a></b> / children</span></div>
2639
      <table class="rt">
2640
         <tr>
2641
            <td class="rt_cornerTopLeft"></td>
2642
            <td class="rt_lineTop"></td>
2643
            <td class="rt_cornerTopRight"></td>
2644
         </tr>
2645
         <tr>
2646
            <td class="rt_lineLeft"></td>
2647
            <td class="rt_content">
2648
               <table class="component">
2649
                  <tbody>
2650
                     <tr>
2651
                        <td class="firstColumn"><b>Namespace</b></td>
2652
                        <td>No namespace</td>
2653
                     </tr>
2654
                     <tr>
2655
                        <td class="firstColumn">
2656
                           <div class="floatLeft"><b>Diagram</b></div>
2657
                           <div class="floatRight"><input id="button_diagram_person_children" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_person_children');" class="control" /></div>
2658
                        </td>
2659
                        <td class="diagram">
2660
                           <div id="diagram_person_children" style="display:block"><img alt="Diagram" border="0" src="img/oaf-person-0_2_xsd_Element_children.jpeg" /></div>
2661
                        </td>
2662
                     </tr>
2663
                     <tr>
2664
                        <td class="firstColumn">
2665
                           <div class="floatLeft"><b>Properties</b></div>
2666
                           <div class="floatRight"><input id="button_properties_person_children" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_person_children');" class="control" /></div>
2667
                        </td>
2668
                        <td>
2669
                           <div id="properties_person_children" style="display:block">
2670
                              <table class="propertiesTable">
2671
                                 <tr>
2672
                                    <td class="firstColumn">content:
2673
                                       
2674
                                    </td>
2675
                                    <td><b>complex</b></td>
2676
                                 </tr>
2677
                                 <tr>
2678
                                    <td class="firstColumn">mixed:
2679
                                       
2680
                                    </td>
2681
                                    <td><b>true</b></td>
2682
                                 </tr>
2683
                              </table>
2684
                           </div>
2685
                        </td>
2686
                     </tr>
2687
                     <tr>
2688
                        <td class="firstColumn"><b>Model</b></td>
2689
                        <td></td>
2690
                     </tr>
2691
                     <tr>
2692
                        <td class="firstColumn">
2693
                           <div class="floatLeft"><b>Source</b></div>
2694
                           <div class="floatRight"><input id="button_source_person_children" type="image" src="img/btM.gif" value="-" onclick="switchState('source_person_children');" class="control" /></div>
2695
                        </td>
2696
                        <td>
2697
                           <div id="source_person_children" style="display:block">
2698
                              <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">
2699
                                 <tr>
2700
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"children"</span><span class="tEl">&gt;</span><span class="tI">
2701
  </span><span class="tEl">&lt;xs:complexType</span><span class="tAN"> mixed=</span><span class="tAV">"true"</span><span class="tEl">/&gt;</span><span class="tI">
2702
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
2703
                                 </tr>
2704
                              </table>
2705
                           </div>
2706
                        </td>
2707
                     </tr>
2708
                     <tr>
2709
                        <td class="firstColumn"><b>Schema location</b></td>
2710
                        <td>http://www.openaire.eu/schema/0.2/oaf-person-0.2.xsd</td>
2711
                     </tr>
2712
                  </tbody>
2713
               </table>
2714
            </td>
2715
            <td class="rt_lineRight"></td>
2716
         </tr>
2717
         <tr>
2718
            <td class="rt_cornerBottomLeft"></td>
2719
            <td class="rt_lineBottom"></td>
2720
            <td class="rt_cornerBottomRight"></td>
2721
         </tr>
2722
      </table>
2723
      <div class="footer">
2724
         <hr />
2725
         <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.
2726
         </div>
2727
      </div><script type="text/javascript">
2728
         <!--                     
2729
                     // The namespace is the selected option in the TOC combo.
2730
                    
2731
                     // Floats the toolbar.
2732
                     var globalControls = getElementObject("global_controls"); 
2733
                     
2734
                     if(globalControls != null){
2735
	                     var browser=navigator.appName;
2736
						 var version = parseFloat(navigator.appVersion.split('MSIE')[1]);
2737
						 
2738
						 var IE6 = false;
2739
						 if ((browser=="Microsoft Internet Explorer") && (version < 7)){
2740
						 	IE6 = true;
2741
						 }
2742
	
2743
	                     //alert (IE6 + " |V| " + version);
2744
	                     
2745
	                     if(IE6){
2746
	                     	// On IE 6 the 'fixed' property is not supported. We must use javascript. 
2747
	                         globalControls.style.position='absolute';                         
2748
	                         // The global controls will do not exist in the TOC frame, when chunking.
2749
	                         findAndFloat("global_controls", 225, 30);    
2750
	                     } else {
2751
	                      	  globalControls.style.position='fixed';                     	
2752
	                     }
2753
	                     
2754
	                     globalControls.style.right='0';                       
2755
                     }
2756
                --></script></body>
2757
</html>
(10-10/18)