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-org-1.0.xsd</title>
7
      <link rel="stylesheet" href="docHtml.css" type="text/css" /><script type="text/javascript">
8
         <!--
9
        var propertiesBoxes= new Array('properties_oaf-org-1.0.xsd', 
10
				'properties_organization', 
11
				'properties_organization_legalname', 
12
				'properties_organization_legalshortname', 
13
				'properties_organization_logourl', 
14
				'properties_organization_originalId', 
15
				'properties_organization_websiteurl', 
16
				'properties_organization_country', 
17
				'properties_organization_collectedfrom', 
18
				'properties_organization_pid', 
19
				'properties_organization_rels');
20
var usedByBoxes= new Array('usedBy_organization');
21
var sourceBoxes= new Array('source_organization', 
22
				'source_organization_legalname', 
23
				'source_organization_legalshortname', 
24
				'source_organization_logourl', 
25
				'source_organization_originalId', 
26
				'source_organization_websiteurl', 
27
				'source_organization_country', 
28
				'source_organization_collectedfrom', 
29
				'source_organization_pid', 
30
				'source_organization_rels');
31
var instanceBoxes= new Array('instance_organization', 
32
				'instance_organization_rels');
33
var diagramBoxes= new Array('diagram_organization', 
34
				'diagram_organization_legalname', 
35
				'diagram_organization_legalshortname', 
36
				'diagram_organization_logourl', 
37
				'diagram_organization_originalId', 
38
				'diagram_organization_websiteurl', 
39
				'diagram_organization_country', 
40
				'diagram_organization_collectedfrom', 
41
				'diagram_organization_pid', 
42
				'diagram_organization_rels');
43
var annotationBoxes= new Array('annotations_oaf-org-1.0.xsd', 
44
				'annotations_organization_country', 
45
				'annotations_organization_collectedfrom', 
46
				'annotations_organization_rels');
47
var attributesBoxes= new Array('attributes_organization_country', 
48
				'attributes_organization_collectedfrom', 
49
				'attributes_organization_pid');
50
var modelBoxes= new Array('model_organization', 
51
				'model_organization_rels');
52

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

    
194
            var element = getElementObject(id);            
195
            
196
            window[id + "_obj"] = element;
197
            
198
            if(document.layers) {
199
               element.style = element;
200
            }
201
            
202
            element.current_y = y_displacement;      
203
            element.first_time = true;
204
         
205
            element.floatElement = function(){
206
               // It may be closed by an user action.
207
                
208
               // Target X and Y coordinates.
209
               var x, y;
210
               
211
               var myWidth = 0, myHeight = 0;
212
               if( typeof( window.innerWidth ) == 'number' ) {
213
                  //Non-IE
214
                  myWidth = window.innerWidth;
215
                  myHeight = window.innerHeight;
216
               } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
217
                  //IE 6+ in 'standards compliant mode'
218
                  myWidth = document.documentElement.clientWidth;
219
                  myHeight = document.documentElement.clientHeight;
220
               } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
221
                  //IE 4 compatible
222
                  myWidth = document.body.clientWidth;
223
                  myHeight = document.body.clientHeight;
224
               }
225
               
226
               
227
               x = myWidth - x_displacement;
228
               
229
               var ns = (navigator.appName.indexOf("Netscape") != -1);               
230
               y = ns ? pageYOffset : document.documentElement && document.documentElement.scrollTop ? 
231
                  document.documentElement.scrollTop : document.body.scrollTop;               
232
               y = y + y_displacement;               
233
               
234
               // The current y is the current coordinate of the floating element.
235
               // This should be at the limit the y target coordinate.
236
               this.current_y += (y - this.current_y)/1.25;
237
               
238
               // Add the pixels constant after the values
239
               // and move the element.
240
               var px = document.layers ? "" : "px";
241
               this.style.left =  x + px;
242
               this.style.top =  this.current_y + px;
243
                              
244
               setTimeout(this.id + "_obj.floatElement()", 100);
245
            }
246
            
247
            element.floatElement();
248
            return element;
249
          }
250

    
251
         /**
252
          * Finds an HTML element by its ID and makes it floatable over the normal content.
253
          *
254
          * @param x_displacement The difference in pixels to the right side of the window from 
255
          *           the left side of the element.
256
          * @param y_displacement The difference in pixels to the right side of the window from 
257
          *           the top of the element.          
258
          */
259
         function selectTOCGroupBy(id, isChunked, indexFileLocation, indexFileNamespace, indexFileComponent){
260

    
261
            if (!isChunked) {
262
             var selectIds = new Array('toc_group_by_namespace', 'toc_group_by_location', 'toc_group_by_component_type');
263
             // Make all the tabs invisible.
264
               for (i = 0; i < 3; i++){
265
                  var tab = getElementObject(selectIds[i]);
266
                  tab.style.display = 'none';
267
               }
268
               var selTab = getElementObject(id);
269
               selTab.style.display = 'block';
270
            } else {
271
             if (id == 'toc_group_by_namespace') {
272
               parent.indexFrame.location = indexFileNamespace;
273
             } else  if (id == 'toc_group_by_location') {
274
               parent.indexFrame.location = indexFileLocation;
275
             } else  if (id == 'toc_group_by_component_type') {
276
              parent.indexFrame.location = indexFileComponent;
277
             }
278
            }
279
         }
280
          
281

    
282
    
283
                    //--></script></head>
284
   <body>
285
      <div id="global_controls" class="globalControls" style="position:absolute;right:0;">
286
         <table class="rt">
287
            <tr>
288
               <td class="rt_cornerTopLeft"></td>
289
               <td class="rt_lineTop"></td>
290
               <td class="rt_cornerTopRight"></td>
291
            </tr>
292
            <tr>
293
               <td class="rt_lineLeft"></td>
294
               <td class="rt_content">
295
                  <h3>Showing:</h3>
296
                  <table>
297
                     <tr>
298
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, annotationBoxes);" class="control" /></span><span class="globalControlName">Annotations</span></td>
299
                     </tr>
300
                     <tr>
301
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, attributesBoxes);" class="control" /></span><span class="globalControlName">Attributes </span></td>
302
                     </tr>
303
                     <tr>
304
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, diagramBoxes);" class="control" /></span><span class="globalControlName">Diagrams</span></td>
305
                     </tr>
306
                     <tr>
307
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, instanceBoxes);" class="control" /></span><span class="globalControlName">Instances</span></td>
308
                     </tr>
309
                     <tr>
310
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, modelBoxes);" class="control" /></span><span class="globalControlName">Model </span></td>
311
                     </tr>
312
                     <tr>
313
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, propertiesBoxes);" class="control" /></span><span class="globalControlName">Properties </span></td>
314
                     </tr>
315
                     <tr>
316
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, sourceBoxes);" class="control" /></span><span class="globalControlName">Source</span></td>
317
                     </tr>
318
                     <tr>
319
                        <td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, usedByBoxes);" class="control" /></span><span class="globalControlName">Used by </span></td>
320
                     </tr>
321
                  </table>
322
                  <div align="right"><span><input type="button" onclick="getElementObject('global_controls').style.display = 'none';" value="Close" /></span></div>
323
               </td>
324
               <td class="rt_lineRight"></td>
325
            </tr>
326
            <tr>
327
               <td class="rt_cornerBottomLeft"></td>
328
               <td class="rt_lineBottom"></td>
329
               <td class="rt_cornerBottomRight"></td>
330
            </tr>
331
         </table>
332
      </div><a id="oaf-org-1.0.xsd"></a><div class="componentTitle">Included schema <span class="qname">oaf-org-1.0.xsd</span></div>
333
      <table class="rt">
334
         <tr>
335
            <td class="rt_cornerTopLeft"></td>
336
            <td class="rt_lineTop"></td>
337
            <td class="rt_cornerTopRight"></td>
338
         </tr>
339
         <tr>
340
            <td class="rt_lineLeft"></td>
341
            <td class="rt_content">
342
               <table class="component">
343
                  <tbody>
344
                     <tr>
345
                        <td class="firstColumn"><b>Namespace</b></td>
346
                        <td>http://namespace.openaire.eu/oaf</td>
347
                     </tr>
348
                     <tr>
349
                        <td class="firstColumn">
350
                           <div class="floatLeft"><b>Annotations</b></div>
351
                           <div class="floatRight"><input id="button_annotations_oaf-org-1.0.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_oaf-org-1.0.xsd');" class="control" /></div>
352
                        </td>
353
                        <td>
354
                           <div id="annotations_oaf-org-1.0.xsd" style="display:block">
355
                              <div class="annotation">
356
                                 <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">
357
                                    <tr>
358
                                       <td width="100%"><pre><span class="tT">This schema describes elements and properties of OpenAIRE entities of type organization: https://issue.openaire.research-infrastructures.eu/projects/openaire2020-wiki/wiki/Core_entity_organization</span></pre></td>
359
                                    </tr>
360
                                 </table>
361
                              </div>
362
                           </div>
363
                        </td>
364
                     </tr>
365
                     <tr>
366
                        <td class="firstColumn">
367
                           <div class="floatLeft"><b>Properties</b></div>
368
                           <div class="floatRight"><input id="button_properties_oaf-org-1.0.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_oaf-org-1.0.xsd');" class="control" /></div>
369
                        </td>
370
                        <td>
371
                           <div id="properties_oaf-org-1.0.xsd" style="display:block">
372
                              <table class="propertiesTable">
373
                                 <tr>
374
                                    <td class="firstColumn" style="white-space: nowrap;">attribute form default</td>
375
                                    <td><b>unqualified</b></td>
376
                                 </tr>
377
                                 <tr>
378
                                    <td class="firstColumn" style="white-space: nowrap;">element form default</td>
379
                                    <td><b>qualified</b></td>
380
                                 </tr>
381
                              </table>
382
                           </div>
383
                        </td>
384
                     </tr>
385
                     <tr>
386
                        <td class="firstColumn"><b>Schema location</b></td>
387
                        <td>https://www.openaire.eu/schema/1.0/oaf-org-1.0.xsd</td>
388
                     </tr>
389
                  </tbody>
390
               </table>
391
            </td>
392
            <td class="rt_lineRight"></td>
393
         </tr>
394
         <tr>
395
            <td class="rt_cornerBottomLeft"></td>
396
            <td class="rt_lineBottom"></td>
397
            <td class="rt_cornerBottomRight"></td>
398
         </tr>
399
      </table><a id="organization"></a><div class="componentTitle">Element <span class="qname">organization</span></div>
400
      <table class="rt">
401
         <tr>
402
            <td class="rt_cornerTopLeft"></td>
403
            <td class="rt_lineTop"></td>
404
            <td class="rt_cornerTopRight"></td>
405
         </tr>
406
         <tr>
407
            <td class="rt_lineLeft"></td>
408
            <td class="rt_content">
409
               <table class="component">
410
                  <tbody>
411
                     <tr>
412
                        <td class="firstColumn"><b>Namespace</b></td>
413
                        <td>http://namespace.openaire.eu/oaf</td>
414
                     </tr>
415
                     <tr>
416
                        <td class="firstColumn">
417
                           <div class="floatLeft"><b>Diagram</b></div>
418
                           <div class="floatRight"><input id="button_diagram_organization" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_organization');" class="control" /></div>
419
                        </td>
420
                        <td class="diagram">
421
                           <div id="diagram_organization" style="display:block"><img alt="Diagram" border="0" src="img/oaf-org-1_0_xsd_Element_organization.jpeg" usemap="#oaf-org-1_0_xsd_Element_organization" /><map name="oaf-org-1_0_xsd_Element_organization" id="oaf-org-1_0_xsd_Element_organization">
422
                                 <area alt="oaf-org-1_0_xsd.tmp#organization_legalname" href="oaf-org-1_0_xsd.html#organization_legalname" coords="219,2,304,26" />
423
                                 <area alt="oaf-org-1_0_xsd.tmp#organization_legalshortname" href="oaf-org-1_0_xsd.html#organization_legalshortname" coords="219,36,333,60" />
424
                                 <area alt="oaf-org-1_0_xsd.tmp#organization_logourl" href="oaf-org-1_0_xsd.html#organization_logourl" coords="219,70,289,94" />
425
                                 <area alt="oaf-org-1_0_xsd.tmp#organization_originalId" href="oaf-org-1_0_xsd.html#organization_originalId" coords="219,104,301,128" />
426
                                 <area alt="oaf-org-1_0_xsd.tmp#organization_websiteurl" href="oaf-org-1_0_xsd.html#organization_websiteurl" coords="219,138,305,162" />
427
                                 <area alt="oaf-org-1_0_xsd.tmp#organization_country" href="oaf-org-1_0_xsd.html#organization_country" coords="219,172,292,196" />
428
                                 <area alt="oaf-org-1_0_xsd.tmp#organization_collectedfrom" href="oaf-org-1_0_xsd.html#organization_collectedfrom" coords="219,236,324,260" />
429
                                 <area alt="oaf-org-1_0_xsd.tmp#organization_pid" href="oaf-org-1_0_xsd.html#organization_pid" coords="219,313,270,337" />
430
                                 <area alt="oaf-org-1_0_xsd.tmp#organization_rels" href="oaf-org-1_0_xsd.html#organization_rels" coords="219,347,270,371" /></map></div>
431
                        </td>
432
                     </tr>
433
                     <tr>
434
                        <td class="firstColumn">
435
                           <div class="floatLeft"><b>Properties</b></div>
436
                           <div class="floatRight"><input id="button_properties_organization" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_organization');" class="control" /></div>
437
                        </td>
438
                        <td>
439
                           <div id="properties_organization" style="display:block">
440
                              <table class="propertiesTable">
441
                                 <tr>
442
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
443
                                    <td><b>complex</b></td>
444
                                 </tr>
445
                              </table>
446
                           </div>
447
                        </td>
448
                     </tr>
449
                     <tr>
450
                        <td class="firstColumn">
451
                           <div class="floatLeft"><b>Used by</b></div>
452
                           <div class="floatRight"><input id="button_usedBy_organization" type="image" src="img/btM.gif" value="-" onclick="switchState('usedBy_organization');" class="control" /></div>
453
                        </td>
454
                        <td>
455
                           <div id="usedBy_organization" style="display:block">
456
                              <table class="usedByTable">
457
                                 <tr>
458
                                    <td class="firstColumn">Element </td>
459
                                    <td><b><a href="oaf-1_0_xsd.html#entity" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-1.0.xsd')">entity</a></b></td>
460
                                 </tr>
461
                              </table>
462
                           </div>
463
                        </td>
464
                     </tr>
465
                     <tr>
466
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_organization" type="image" src="img/btM.gif" value="-" onclick="switchState('model_organization');" class="control" /></div>
467
                        </td>
468
                        <td>
469
                           <div id="model_organization" style="display:block"><b><a href="oaf-org-1_0_xsd.html#organization_legalname" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">legalname</a></b> | <b><a href="oaf-org-1_0_xsd.html#organization_legalshortname" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">legalshortname</a></b> | <b><a href="oaf-org-1_0_xsd.html#organization_logourl" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">logourl</a></b> | <b><a href="oaf-org-1_0_xsd.html#organization_originalId" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">originalId</a></b> | <b><a href="oaf-org-1_0_xsd.html#organization_websiteurl" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">websiteurl</a></b> | <b><a href="oaf-org-1_0_xsd.html#organization_country" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">country</a></b> | <b><a href="oaf-org-1_0_xsd.html#organization_collectedfrom" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">collectedfrom</a></b> | <b><a href="oaf-org-1_0_xsd.html#organization_pid" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">pid</a></b> | <b><a href="oaf-org-1_0_xsd.html#organization_rels" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">rels</a></b></div>
470
                        </td>
471
                     </tr>
472
                     <tr>
473
                        <td class="firstColumn"><b>Children</b></td>
474
                        <td><b><a href="oaf-org-1_0_xsd.html#organization_collectedfrom" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">collectedfrom</a></b>, <b><a href="oaf-org-1_0_xsd.html#organization_country" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">country</a></b>, <b><a href="oaf-org-1_0_xsd.html#organization_legalname" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">legalname</a></b>, <b><a href="oaf-org-1_0_xsd.html#organization_legalshortname" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">legalshortname</a></b>, <b><a href="oaf-org-1_0_xsd.html#organization_logourl" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">logourl</a></b>, <b><a href="oaf-org-1_0_xsd.html#organization_originalId" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">originalId</a></b>, <b><a href="oaf-org-1_0_xsd.html#organization_pid" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">pid</a></b>, <b><a href="oaf-org-1_0_xsd.html#organization_rels" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">rels</a></b>, <b><a href="oaf-org-1_0_xsd.html#organization_websiteurl" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">websiteurl</a></b></td>
475
                     </tr>
476
                     <tr>
477
                        <td class="firstColumn">
478
                           <div class="floatLeft"><b>Instance</b></div>
479
                           <div class="floatRight"><input id="button_instance_organization" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_organization');" class="control" /></div>
480
                        </td>
481
                        <td>
482
                           <div id="instance_organization" style="display:block">
483
                              <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">
484
                                 <tr>
485
                                    <td width="100%"><pre><span class="tEl">&lt;organization</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">
486
  </span><span class="tEl">&lt;legalname</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/legalname&gt;</span><span class="tI">
487
  </span><span class="tEl">&lt;legalshortname</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/legalshortname&gt;</span><span class="tI">
488
  </span><span class="tEl">&lt;logourl</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/logourl&gt;</span><span class="tI">
489
  </span><span class="tEl">&lt;originalId</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/originalId&gt;</span><span class="tI">
490
  </span><span class="tEl">&lt;websiteurl</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/websiteurl&gt;</span><span class="tI">
491
  </span><span class="tEl">&lt;country</span><span class="tT"> </span><span class="tAN">code=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">inferenceprovenance=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">inferred=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">trust=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/country&gt;</span><span class="tI">
492
  </span><span class="tEl">&lt;collectedfrom</span><span class="tT"> </span><span class="tAN">id=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">inferenceprovenance=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">inferred=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">name=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">trust=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/collectedfrom&gt;</span><span class="tI">
493
  </span><span class="tEl">&lt;pid</span><span class="tT"> </span><span class="tAN">inferenceprovenance=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">inferred=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">trust=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">type=</span><span class="tAV">""</span><span class="tEl">&gt;</span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl">&lt;/pid&gt;</span><span class="tI">
494
  </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">
495
</span><span class="tEl">&lt;/organization&gt;</span></pre></td>
496
                                 </tr>
497
                              </table>
498
                           </div>
499
                        </td>
500
                     </tr>
501
                     <tr>
502
                        <td class="firstColumn">
503
                           <div class="floatLeft"><b>Source</b></div>
504
                           <div class="floatRight"><input id="button_source_organization" type="image" src="img/btM.gif" value="-" onclick="switchState('source_organization');" class="control" /></div>
505
                        </td>
506
                        <td>
507
                           <div id="source_organization" style="display:block">
508
                              <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">
509
                                 <tr>
510
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"organization"</span><span class="tEl">&gt;</span><span class="tI">
511
  </span><span class="tEl">&lt;xs:complexType</span><span class="tEl">&gt;</span><span class="tI">
512
    </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">
513
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"legalname"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span><span class="tI">
514
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"legalshortname"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span><span class="tI">
515
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"logourl"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span><span class="tI">
516
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"originalId"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span><span class="tI">
517
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"websiteurl"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span><span class="tI">
518
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"country"</span><span class="tAN"> type=</span><span class="tAV">"controlledElementType"</span><span class="tEl">&gt;</span><span class="tI">
519
        </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
520
          </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="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
521
        </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
522
      </span><span class="tEl">&lt;/xs:element&gt;</span><span class="tI">
523
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"collectedfrom"</span><span class="tAN"> type=</span><span class="tAV">"namedIdElementType"</span><span class="tEl">&gt;</span><span class="tI">
524
        </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
525
          </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 organization has been collected from.</span><span class="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
526
        </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
527
      </span><span class="tEl">&lt;/xs:element&gt;</span><span class="tI">
528
      </span><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"pid"</span><span class="tAN"> type=</span><span class="tAV">"typedElementType"</span><span class="tEl">/&gt;</span><span class="tI">
529
      </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">
530
        </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
531
          </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">
532
        </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
533
      </span><span class="tEl">&lt;/xs:element&gt;</span><span class="tI">
534
      </span><span class="tC">&lt;!-- If we decide not to show deduplicated org, then we have to remove this field --&gt;</span><span class="tI">
535
      </span><span class="tC">&lt;!-- &lt;xs:element name="duplicates" type="mergedOrgs"/&gt; --&gt;</span><span class="tI">
536
    </span><span class="tEl">&lt;/xs:choice&gt;</span><span class="tI">
537
  </span><span class="tEl">&lt;/xs:complexType&gt;</span><span class="tI">
538
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
539
                                 </tr>
540
                              </table>
541
                           </div>
542
                        </td>
543
                     </tr>
544
                     <tr>
545
                        <td class="firstColumn"><b>Schema location</b></td>
546
                        <td>https://www.openaire.eu/schema/1.0/oaf-org-1.0.xsd</td>
547
                     </tr>
548
                  </tbody>
549
               </table>
550
            </td>
551
            <td class="rt_lineRight"></td>
552
         </tr>
553
         <tr>
554
            <td class="rt_cornerBottomLeft"></td>
555
            <td class="rt_lineBottom"></td>
556
            <td class="rt_cornerBottomRight"></td>
557
         </tr>
558
      </table><a id="organization_legalname"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-org-1_0_xsd.html#organization" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization</a></b> / legalname</span></div>
559
      <table class="rt">
560
         <tr>
561
            <td class="rt_cornerTopLeft"></td>
562
            <td class="rt_lineTop"></td>
563
            <td class="rt_cornerTopRight"></td>
564
         </tr>
565
         <tr>
566
            <td class="rt_lineLeft"></td>
567
            <td class="rt_content">
568
               <table class="component">
569
                  <tbody>
570
                     <tr>
571
                        <td class="firstColumn"><b>Namespace</b></td>
572
                        <td>http://namespace.openaire.eu/oaf</td>
573
                     </tr>
574
                     <tr>
575
                        <td class="firstColumn">
576
                           <div class="floatLeft"><b>Diagram</b></div>
577
                           <div class="floatRight"><input id="button_diagram_organization_legalname" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_organization_legalname');" class="control" /></div>
578
                        </td>
579
                        <td class="diagram">
580
                           <div id="diagram_organization_legalname" style="display:block"><img alt="Diagram" border="0" src="img/oaf-org-1_0_xsd_Element_legalname.jpeg" /></div>
581
                        </td>
582
                     </tr>
583
                     <tr>
584
                        <td class="firstColumn"><b>Type</b></td>
585
                        <td><b>xs:string</b></td>
586
                     </tr>
587
                     <tr>
588
                        <td class="firstColumn">
589
                           <div class="floatLeft"><b>Properties</b></div>
590
                           <div class="floatRight"><input id="button_properties_organization_legalname" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_organization_legalname');" class="control" /></div>
591
                        </td>
592
                        <td>
593
                           <div id="properties_organization_legalname" style="display:block">
594
                              <table class="propertiesTable">
595
                                 <tr>
596
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
597
                                    <td><b>simple</b></td>
598
                                 </tr>
599
                              </table>
600
                           </div>
601
                        </td>
602
                     </tr>
603
                     <tr>
604
                        <td class="firstColumn">
605
                           <div class="floatLeft"><b>Source</b></div>
606
                           <div class="floatRight"><input id="button_source_organization_legalname" type="image" src="img/btM.gif" value="-" onclick="switchState('source_organization_legalname');" class="control" /></div>
607
                        </td>
608
                        <td>
609
                           <div id="source_organization_legalname" style="display:block">
610
                              <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">
611
                                 <tr>
612
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"legalname"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span></pre></td>
613
                                 </tr>
614
                              </table>
615
                           </div>
616
                        </td>
617
                     </tr>
618
                     <tr>
619
                        <td class="firstColumn"><b>Schema location</b></td>
620
                        <td>https://www.openaire.eu/schema/1.0/oaf-org-1.0.xsd</td>
621
                     </tr>
622
                  </tbody>
623
               </table>
624
            </td>
625
            <td class="rt_lineRight"></td>
626
         </tr>
627
         <tr>
628
            <td class="rt_cornerBottomLeft"></td>
629
            <td class="rt_lineBottom"></td>
630
            <td class="rt_cornerBottomRight"></td>
631
         </tr>
632
      </table><a id="organization_legalshortname"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-org-1_0_xsd.html#organization" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization</a></b> / legalshortname</span></div>
633
      <table class="rt">
634
         <tr>
635
            <td class="rt_cornerTopLeft"></td>
636
            <td class="rt_lineTop"></td>
637
            <td class="rt_cornerTopRight"></td>
638
         </tr>
639
         <tr>
640
            <td class="rt_lineLeft"></td>
641
            <td class="rt_content">
642
               <table class="component">
643
                  <tbody>
644
                     <tr>
645
                        <td class="firstColumn"><b>Namespace</b></td>
646
                        <td>http://namespace.openaire.eu/oaf</td>
647
                     </tr>
648
                     <tr>
649
                        <td class="firstColumn">
650
                           <div class="floatLeft"><b>Diagram</b></div>
651
                           <div class="floatRight"><input id="button_diagram_organization_legalshortname" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_organization_legalshortname');" class="control" /></div>
652
                        </td>
653
                        <td class="diagram">
654
                           <div id="diagram_organization_legalshortname" style="display:block"><img alt="Diagram" border="0" src="img/oaf-org-1_0_xsd_Element_legalshortname.jpeg" /></div>
655
                        </td>
656
                     </tr>
657
                     <tr>
658
                        <td class="firstColumn"><b>Type</b></td>
659
                        <td><b>xs:string</b></td>
660
                     </tr>
661
                     <tr>
662
                        <td class="firstColumn">
663
                           <div class="floatLeft"><b>Properties</b></div>
664
                           <div class="floatRight"><input id="button_properties_organization_legalshortname" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_organization_legalshortname');" class="control" /></div>
665
                        </td>
666
                        <td>
667
                           <div id="properties_organization_legalshortname" style="display:block">
668
                              <table class="propertiesTable">
669
                                 <tr>
670
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
671
                                    <td><b>simple</b></td>
672
                                 </tr>
673
                              </table>
674
                           </div>
675
                        </td>
676
                     </tr>
677
                     <tr>
678
                        <td class="firstColumn">
679
                           <div class="floatLeft"><b>Source</b></div>
680
                           <div class="floatRight"><input id="button_source_organization_legalshortname" type="image" src="img/btM.gif" value="-" onclick="switchState('source_organization_legalshortname');" class="control" /></div>
681
                        </td>
682
                        <td>
683
                           <div id="source_organization_legalshortname" style="display:block">
684
                              <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">
685
                                 <tr>
686
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"legalshortname"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span></pre></td>
687
                                 </tr>
688
                              </table>
689
                           </div>
690
                        </td>
691
                     </tr>
692
                     <tr>
693
                        <td class="firstColumn"><b>Schema location</b></td>
694
                        <td>https://www.openaire.eu/schema/1.0/oaf-org-1.0.xsd</td>
695
                     </tr>
696
                  </tbody>
697
               </table>
698
            </td>
699
            <td class="rt_lineRight"></td>
700
         </tr>
701
         <tr>
702
            <td class="rt_cornerBottomLeft"></td>
703
            <td class="rt_lineBottom"></td>
704
            <td class="rt_cornerBottomRight"></td>
705
         </tr>
706
      </table><a id="organization_logourl"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-org-1_0_xsd.html#organization" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization</a></b> / logourl</span></div>
707
      <table class="rt">
708
         <tr>
709
            <td class="rt_cornerTopLeft"></td>
710
            <td class="rt_lineTop"></td>
711
            <td class="rt_cornerTopRight"></td>
712
         </tr>
713
         <tr>
714
            <td class="rt_lineLeft"></td>
715
            <td class="rt_content">
716
               <table class="component">
717
                  <tbody>
718
                     <tr>
719
                        <td class="firstColumn"><b>Namespace</b></td>
720
                        <td>http://namespace.openaire.eu/oaf</td>
721
                     </tr>
722
                     <tr>
723
                        <td class="firstColumn">
724
                           <div class="floatLeft"><b>Diagram</b></div>
725
                           <div class="floatRight"><input id="button_diagram_organization_logourl" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_organization_logourl');" class="control" /></div>
726
                        </td>
727
                        <td class="diagram">
728
                           <div id="diagram_organization_logourl" style="display:block"><img alt="Diagram" border="0" src="img/oaf-org-1_0_xsd_Element_logourl.jpeg" /></div>
729
                        </td>
730
                     </tr>
731
                     <tr>
732
                        <td class="firstColumn"><b>Type</b></td>
733
                        <td><b>xs:string</b></td>
734
                     </tr>
735
                     <tr>
736
                        <td class="firstColumn">
737
                           <div class="floatLeft"><b>Properties</b></div>
738
                           <div class="floatRight"><input id="button_properties_organization_logourl" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_organization_logourl');" class="control" /></div>
739
                        </td>
740
                        <td>
741
                           <div id="properties_organization_logourl" style="display:block">
742
                              <table class="propertiesTable">
743
                                 <tr>
744
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
745
                                    <td><b>simple</b></td>
746
                                 </tr>
747
                              </table>
748
                           </div>
749
                        </td>
750
                     </tr>
751
                     <tr>
752
                        <td class="firstColumn">
753
                           <div class="floatLeft"><b>Source</b></div>
754
                           <div class="floatRight"><input id="button_source_organization_logourl" type="image" src="img/btM.gif" value="-" onclick="switchState('source_organization_logourl');" class="control" /></div>
755
                        </td>
756
                        <td>
757
                           <div id="source_organization_logourl" style="display:block">
758
                              <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">
759
                                 <tr>
760
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"logourl"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span></pre></td>
761
                                 </tr>
762
                              </table>
763
                           </div>
764
                        </td>
765
                     </tr>
766
                     <tr>
767
                        <td class="firstColumn"><b>Schema location</b></td>
768
                        <td>https://www.openaire.eu/schema/1.0/oaf-org-1.0.xsd</td>
769
                     </tr>
770
                  </tbody>
771
               </table>
772
            </td>
773
            <td class="rt_lineRight"></td>
774
         </tr>
775
         <tr>
776
            <td class="rt_cornerBottomLeft"></td>
777
            <td class="rt_lineBottom"></td>
778
            <td class="rt_cornerBottomRight"></td>
779
         </tr>
780
      </table><a id="organization_originalId"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-org-1_0_xsd.html#organization" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization</a></b> / originalId</span></div>
781
      <table class="rt">
782
         <tr>
783
            <td class="rt_cornerTopLeft"></td>
784
            <td class="rt_lineTop"></td>
785
            <td class="rt_cornerTopRight"></td>
786
         </tr>
787
         <tr>
788
            <td class="rt_lineLeft"></td>
789
            <td class="rt_content">
790
               <table class="component">
791
                  <tbody>
792
                     <tr>
793
                        <td class="firstColumn"><b>Namespace</b></td>
794
                        <td>http://namespace.openaire.eu/oaf</td>
795
                     </tr>
796
                     <tr>
797
                        <td class="firstColumn">
798
                           <div class="floatLeft"><b>Diagram</b></div>
799
                           <div class="floatRight"><input id="button_diagram_organization_originalId" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_organization_originalId');" class="control" /></div>
800
                        </td>
801
                        <td class="diagram">
802
                           <div id="diagram_organization_originalId" style="display:block"><img alt="Diagram" border="0" src="img/oaf-org-1_0_xsd_Element_originalId.jpeg" /></div>
803
                        </td>
804
                     </tr>
805
                     <tr>
806
                        <td class="firstColumn"><b>Type</b></td>
807
                        <td><b>xs:string</b></td>
808
                     </tr>
809
                     <tr>
810
                        <td class="firstColumn">
811
                           <div class="floatLeft"><b>Properties</b></div>
812
                           <div class="floatRight"><input id="button_properties_organization_originalId" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_organization_originalId');" class="control" /></div>
813
                        </td>
814
                        <td>
815
                           <div id="properties_organization_originalId" style="display:block">
816
                              <table class="propertiesTable">
817
                                 <tr>
818
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
819
                                    <td><b>simple</b></td>
820
                                 </tr>
821
                              </table>
822
                           </div>
823
                        </td>
824
                     </tr>
825
                     <tr>
826
                        <td class="firstColumn">
827
                           <div class="floatLeft"><b>Source</b></div>
828
                           <div class="floatRight"><input id="button_source_organization_originalId" type="image" src="img/btM.gif" value="-" onclick="switchState('source_organization_originalId');" class="control" /></div>
829
                        </td>
830
                        <td>
831
                           <div id="source_organization_originalId" style="display:block">
832
                              <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">
833
                                 <tr>
834
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"originalId"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span></pre></td>
835
                                 </tr>
836
                              </table>
837
                           </div>
838
                        </td>
839
                     </tr>
840
                     <tr>
841
                        <td class="firstColumn"><b>Schema location</b></td>
842
                        <td>https://www.openaire.eu/schema/1.0/oaf-org-1.0.xsd</td>
843
                     </tr>
844
                  </tbody>
845
               </table>
846
            </td>
847
            <td class="rt_lineRight"></td>
848
         </tr>
849
         <tr>
850
            <td class="rt_cornerBottomLeft"></td>
851
            <td class="rt_lineBottom"></td>
852
            <td class="rt_cornerBottomRight"></td>
853
         </tr>
854
      </table><a id="organization_websiteurl"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-org-1_0_xsd.html#organization" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization</a></b> / websiteurl</span></div>
855
      <table class="rt">
856
         <tr>
857
            <td class="rt_cornerTopLeft"></td>
858
            <td class="rt_lineTop"></td>
859
            <td class="rt_cornerTopRight"></td>
860
         </tr>
861
         <tr>
862
            <td class="rt_lineLeft"></td>
863
            <td class="rt_content">
864
               <table class="component">
865
                  <tbody>
866
                     <tr>
867
                        <td class="firstColumn"><b>Namespace</b></td>
868
                        <td>http://namespace.openaire.eu/oaf</td>
869
                     </tr>
870
                     <tr>
871
                        <td class="firstColumn">
872
                           <div class="floatLeft"><b>Diagram</b></div>
873
                           <div class="floatRight"><input id="button_diagram_organization_websiteurl" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_organization_websiteurl');" class="control" /></div>
874
                        </td>
875
                        <td class="diagram">
876
                           <div id="diagram_organization_websiteurl" style="display:block"><img alt="Diagram" border="0" src="img/oaf-org-1_0_xsd_Element_websiteurl.jpeg" /></div>
877
                        </td>
878
                     </tr>
879
                     <tr>
880
                        <td class="firstColumn"><b>Type</b></td>
881
                        <td><b>xs:string</b></td>
882
                     </tr>
883
                     <tr>
884
                        <td class="firstColumn">
885
                           <div class="floatLeft"><b>Properties</b></div>
886
                           <div class="floatRight"><input id="button_properties_organization_websiteurl" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_organization_websiteurl');" class="control" /></div>
887
                        </td>
888
                        <td>
889
                           <div id="properties_organization_websiteurl" style="display:block">
890
                              <table class="propertiesTable">
891
                                 <tr>
892
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
893
                                    <td><b>simple</b></td>
894
                                 </tr>
895
                              </table>
896
                           </div>
897
                        </td>
898
                     </tr>
899
                     <tr>
900
                        <td class="firstColumn">
901
                           <div class="floatLeft"><b>Source</b></div>
902
                           <div class="floatRight"><input id="button_source_organization_websiteurl" type="image" src="img/btM.gif" value="-" onclick="switchState('source_organization_websiteurl');" class="control" /></div>
903
                        </td>
904
                        <td>
905
                           <div id="source_organization_websiteurl" style="display:block">
906
                              <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">
907
                                 <tr>
908
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"websiteurl"</span><span class="tAN"> type=</span><span class="tAV">"xs:string"</span><span class="tEl">/&gt;</span></pre></td>
909
                                 </tr>
910
                              </table>
911
                           </div>
912
                        </td>
913
                     </tr>
914
                     <tr>
915
                        <td class="firstColumn"><b>Schema location</b></td>
916
                        <td>https://www.openaire.eu/schema/1.0/oaf-org-1.0.xsd</td>
917
                     </tr>
918
                  </tbody>
919
               </table>
920
            </td>
921
            <td class="rt_lineRight"></td>
922
         </tr>
923
         <tr>
924
            <td class="rt_cornerBottomLeft"></td>
925
            <td class="rt_lineBottom"></td>
926
            <td class="rt_cornerBottomRight"></td>
927
         </tr>
928
      </table><a id="organization_country"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-org-1_0_xsd.html#organization" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization</a></b> / country</span></div>
929
      <table class="rt">
930
         <tr>
931
            <td class="rt_cornerTopLeft"></td>
932
            <td class="rt_lineTop"></td>
933
            <td class="rt_cornerTopRight"></td>
934
         </tr>
935
         <tr>
936
            <td class="rt_lineLeft"></td>
937
            <td class="rt_content">
938
               <table class="component">
939
                  <tbody>
940
                     <tr>
941
                        <td class="firstColumn"><b>Namespace</b></td>
942
                        <td>http://namespace.openaire.eu/oaf</td>
943
                     </tr>
944
                     <tr>
945
                        <td class="firstColumn">
946
                           <div class="floatLeft"><b>Annotations</b></div>
947
                           <div class="floatRight"><input id="button_annotations_organization_country" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_organization_country');" class="control" /></div>
948
                        </td>
949
                        <td>
950
                           <div id="annotations_organization_country" style="display:block">
951
                              <div class="annotation">
952
                                 <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">
953
                                    <tr>
954
                                       <td width="100%"><pre><span class="tT">Countries in ISO 3166-1 alpha-2.</span></pre></td>
955
                                    </tr>
956
                                 </table>
957
                              </div>
958
                           </div>
959
                        </td>
960
                     </tr>
961
                     <tr>
962
                        <td class="firstColumn">
963
                           <div class="floatLeft"><b>Diagram</b></div>
964
                           <div class="floatRight"><input id="button_diagram_organization_country" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_organization_country');" class="control" /></div>
965
                        </td>
966
                        <td class="diagram">
967
                           <div id="diagram_organization_country" style="display:block"><img alt="Diagram" border="0" src="img/oaf-org-1_0_xsd_Element_country.jpeg" usemap="#oaf-org-1_0_xsd_Element_country" /><map name="oaf-org-1_0_xsd_Element_country" id="oaf-org-1_0_xsd_Element_country">
968
                                 <area alt="oaf-common-1_0_xsd.tmp#controlledElementType_code" href="oaf-common-1_0_xsd.html#controlledElementType_code" coords="149,157,223,181" />
969
                                 <area alt="oaf-common-1_0_xsd.tmp#optionalInferenceAttrGroup" href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup" coords="152,194,356,220" />
970
                                 <area alt="oaf-common-1_0_xsd.tmp#controlledElementType" href="oaf-common-1_0_xsd.html#controlledElementType" coords="124,3,298,25" /></map></div>
971
                        </td>
972
                     </tr>
973
                     <tr>
974
                        <td class="firstColumn"><b>Type</b></td>
975
                        <td><b><a href="oaf-common-1_0_xsd.html#controlledElementType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">controlledElementType</a></b></td>
976
                     </tr>
977
                     <tr>
978
                        <td class="firstColumn">
979
                           <div class="floatLeft"><b>Properties</b></div>
980
                           <div class="floatRight"><input id="button_properties_organization_country" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_organization_country');" class="control" /></div>
981
                        </td>
982
                        <td>
983
                           <div id="properties_organization_country" style="display:block">
984
                              <table class="propertiesTable">
985
                                 <tr>
986
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
987
                                    <td><b>complex</b></td>
988
                                 </tr>
989
                                 <tr>
990
                                    <td class="firstColumn" style="white-space: nowrap;">mixed</td>
991
                                    <td><b>true</b></td>
992
                                 </tr>
993
                              </table>
994
                           </div>
995
                        </td>
996
                     </tr>
997
                     <tr>
998
                        <td class="firstColumn">
999
                           <div class="floatLeft"><b>Attributes</b></div>
1000
                           <div class="floatRight"><input id="button_attributes_organization_country" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_organization_country');" class="control" /></div>
1001
                        </td>
1002
                        <td>
1003
                           <div id="attributes_organization_country" style="display:block">
1004
                              <table class="attributesTable">
1005
                                 <thead>
1006
                                    <tr>
1007
                                       <th>QName</th>
1008
                                       <th width="10%">Type</th>
1009
                                       <th width="5%">Use</th>
1010
                                       <th>Annotation</th>
1011
                                    </tr>
1012
                                 </thead>
1013
                                 <tr>
1014
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#controlledElementType_code" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">code</a></b></td>
1015
                                    <td><b>xs:string</b></td>
1016
                                    <td>required</td>
1017
                                    <td>
1018
                                       <div class="annotation"></div>
1019
                                    </td>
1020
                                 </tr>
1021
                                 <tr>
1022
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferenceprovenance</a></b></td>
1023
                                    <td><b>xs:string</b></td>
1024
                                    <td>optional</td>
1025
                                    <td>
1026
                                       <div class="annotation">
1027
                                          <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">
1028
                                             <tr>
1029
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
1030
                                             </tr>
1031
                                          </table>
1032
                                       </div>
1033
                                    </td>
1034
                                 </tr>
1035
                                 <tr>
1036
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferred</a></b></td>
1037
                                    <td><b>xs:boolean</b></td>
1038
                                    <td>optional</td>
1039
                                    <td>
1040
                                       <div class="annotation">
1041
                                          <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">
1042
                                             <tr>
1043
                                                <td width="100%"><pre><span class="tT">True if this information has been inferred by the automatic</span><span class="tI">
1044
</span><span class="tT">inference algorithms run by OpenAIRE.</span></pre></td>
1045
                                             </tr>
1046
                                          </table>
1047
                                       </div>
1048
                                    </td>
1049
                                 </tr>
1050
                                 <tr>
1051
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">trust</a></b></td>
1052
                                    <td><b>xs:string</b></td>
1053
                                    <td>optional</td>
1054
                                    <td>
1055
                                       <div class="annotation">
1056
                                          <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">
1057
                                             <tr>
1058
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range [0,1]. More the</span><span class="tI">
1059
</span><span class="tT">value, more trustworthy is the information.</span></pre></td>
1060
                                             </tr>
1061
                                          </table>
1062
                                       </div>
1063
                                    </td>
1064
                                 </tr>
1065
                              </table>
1066
                           </div>
1067
                        </td>
1068
                     </tr>
1069
                     <tr>
1070
                        <td class="firstColumn">
1071
                           <div class="floatLeft"><b>Source</b></div>
1072
                           <div class="floatRight"><input id="button_source_organization_country" type="image" src="img/btM.gif" value="-" onclick="switchState('source_organization_country');" class="control" /></div>
1073
                        </td>
1074
                        <td>
1075
                           <div id="source_organization_country" style="display:block">
1076
                              <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">
1077
                                 <tr>
1078
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"country"</span><span class="tAN"> type=</span><span class="tAV">"controlledElementType"</span><span class="tEl">&gt;</span><span class="tI">
1079
  </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
1080
    </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="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
1081
  </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
1082
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
1083
                                 </tr>
1084
                              </table>
1085
                           </div>
1086
                        </td>
1087
                     </tr>
1088
                     <tr>
1089
                        <td class="firstColumn"><b>Schema location</b></td>
1090
                        <td>https://www.openaire.eu/schema/1.0/oaf-org-1.0.xsd</td>
1091
                     </tr>
1092
                  </tbody>
1093
               </table>
1094
            </td>
1095
            <td class="rt_lineRight"></td>
1096
         </tr>
1097
         <tr>
1098
            <td class="rt_cornerBottomLeft"></td>
1099
            <td class="rt_lineBottom"></td>
1100
            <td class="rt_cornerBottomRight"></td>
1101
         </tr>
1102
      </table><a id="organization_collectedfrom"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-org-1_0_xsd.html#organization" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization</a></b> / collectedfrom</span></div>
1103
      <table class="rt">
1104
         <tr>
1105
            <td class="rt_cornerTopLeft"></td>
1106
            <td class="rt_lineTop"></td>
1107
            <td class="rt_cornerTopRight"></td>
1108
         </tr>
1109
         <tr>
1110
            <td class="rt_lineLeft"></td>
1111
            <td class="rt_content">
1112
               <table class="component">
1113
                  <tbody>
1114
                     <tr>
1115
                        <td class="firstColumn"><b>Namespace</b></td>
1116
                        <td>http://namespace.openaire.eu/oaf</td>
1117
                     </tr>
1118
                     <tr>
1119
                        <td class="firstColumn">
1120
                           <div class="floatLeft"><b>Annotations</b></div>
1121
                           <div class="floatRight"><input id="button_annotations_organization_collectedfrom" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_organization_collectedfrom');" class="control" /></div>
1122
                        </td>
1123
                        <td>
1124
                           <div id="annotations_organization_collectedfrom" style="display:block">
1125
                              <div class="annotation">
1126
                                 <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">
1127
                                    <tr>
1128
                                       <td width="100%"><pre><span class="tT">Identifier and name of the datasource from which this</span><span class="tI">
1129
</span><span class="tT">organization has been collected from.</span></pre></td>
1130
                                    </tr>
1131
                                 </table>
1132
                              </div>
1133
                           </div>
1134
                        </td>
1135
                     </tr>
1136
                     <tr>
1137
                        <td class="firstColumn">
1138
                           <div class="floatLeft"><b>Diagram</b></div>
1139
                           <div class="floatRight"><input id="button_diagram_organization_collectedfrom" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_organization_collectedfrom');" class="control" /></div>
1140
                        </td>
1141
                        <td class="diagram">
1142
                           <div id="diagram_organization_collectedfrom" style="display:block"><img alt="Diagram" border="0" src="img/oaf-org-1_0_xsd_Element_collectedfrom.jpeg" usemap="#oaf-org-1_0_xsd_Element_collectedfrom" /><map name="oaf-org-1_0_xsd_Element_collectedfrom" id="oaf-org-1_0_xsd_Element_collectedfrom">
1143
                                 <area alt="oaf-common-1_0_xsd.tmp#namedIdElementType_id" href="oaf-common-1_0_xsd.html#namedIdElementType_id" coords="181,78,238,102" />
1144
                                 <area alt="oaf-common-1_0_xsd.tmp#namedIdElementType_name" href="oaf-common-1_0_xsd.html#namedIdElementType_name" coords="181,112,247,136" />
1145
                                 <area alt="oaf-common-1_0_xsd.tmp#optionalInferenceAttrGroup" href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup" coords="184,149,388,175" />
1146
                                 <area alt="oaf-common-1_0_xsd.tmp#namedIdElementType" href="oaf-common-1_0_xsd.html#namedIdElementType" coords="156,3,321,25" /></map></div>
1147
                        </td>
1148
                     </tr>
1149
                     <tr>
1150
                        <td class="firstColumn"><b>Type</b></td>
1151
                        <td><b><a href="oaf-common-1_0_xsd.html#namedIdElementType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">namedIdElementType</a></b></td>
1152
                     </tr>
1153
                     <tr>
1154
                        <td class="firstColumn">
1155
                           <div class="floatLeft"><b>Properties</b></div>
1156
                           <div class="floatRight"><input id="button_properties_organization_collectedfrom" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_organization_collectedfrom');" class="control" /></div>
1157
                        </td>
1158
                        <td>
1159
                           <div id="properties_organization_collectedfrom" style="display:block">
1160
                              <table class="propertiesTable">
1161
                                 <tr>
1162
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
1163
                                    <td><b>complex</b></td>
1164
                                 </tr>
1165
                              </table>
1166
                           </div>
1167
                        </td>
1168
                     </tr>
1169
                     <tr>
1170
                        <td class="firstColumn">
1171
                           <div class="floatLeft"><b>Attributes</b></div>
1172
                           <div class="floatRight"><input id="button_attributes_organization_collectedfrom" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_organization_collectedfrom');" class="control" /></div>
1173
                        </td>
1174
                        <td>
1175
                           <div id="attributes_organization_collectedfrom" style="display:block">
1176
                              <table class="attributesTable">
1177
                                 <thead>
1178
                                    <tr>
1179
                                       <th>QName</th>
1180
                                       <th width="10%">Type</th>
1181
                                       <th width="5%">Use</th>
1182
                                       <th>Annotation</th>
1183
                                    </tr>
1184
                                 </thead>
1185
                                 <tr>
1186
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#namedIdElementType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">id</a></b></td>
1187
                                    <td></td>
1188
                                    <td>required</td>
1189
                                    <td>
1190
                                       <div class="annotation"></div>
1191
                                    </td>
1192
                                 </tr>
1193
                                 <tr>
1194
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferenceprovenance</a></b></td>
1195
                                    <td><b>xs:string</b></td>
1196
                                    <td>optional</td>
1197
                                    <td>
1198
                                       <div class="annotation">
1199
                                          <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">
1200
                                             <tr>
1201
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
1202
                                             </tr>
1203
                                          </table>
1204
                                       </div>
1205
                                    </td>
1206
                                 </tr>
1207
                                 <tr>
1208
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferred</a></b></td>
1209
                                    <td><b>xs:boolean</b></td>
1210
                                    <td>optional</td>
1211
                                    <td>
1212
                                       <div class="annotation">
1213
                                          <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">
1214
                                             <tr>
1215
                                                <td width="100%"><pre><span class="tT">True if this information has been inferred by the automatic</span><span class="tI">
1216
</span><span class="tT">inference algorithms run by OpenAIRE.</span></pre></td>
1217
                                             </tr>
1218
                                          </table>
1219
                                       </div>
1220
                                    </td>
1221
                                 </tr>
1222
                                 <tr>
1223
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#namedIdElementType_name" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">name</a></b></td>
1224
                                    <td></td>
1225
                                    <td>required</td>
1226
                                    <td>
1227
                                       <div class="annotation"></div>
1228
                                    </td>
1229
                                 </tr>
1230
                                 <tr>
1231
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">trust</a></b></td>
1232
                                    <td><b>xs:string</b></td>
1233
                                    <td>optional</td>
1234
                                    <td>
1235
                                       <div class="annotation">
1236
                                          <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">
1237
                                             <tr>
1238
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range [0,1]. More the</span><span class="tI">
1239
</span><span class="tT">value, more trustworthy is the information.</span></pre></td>
1240
                                             </tr>
1241
                                          </table>
1242
                                       </div>
1243
                                    </td>
1244
                                 </tr>
1245
                              </table>
1246
                           </div>
1247
                        </td>
1248
                     </tr>
1249
                     <tr>
1250
                        <td class="firstColumn">
1251
                           <div class="floatLeft"><b>Source</b></div>
1252
                           <div class="floatRight"><input id="button_source_organization_collectedfrom" type="image" src="img/btM.gif" value="-" onclick="switchState('source_organization_collectedfrom');" class="control" /></div>
1253
                        </td>
1254
                        <td>
1255
                           <div id="source_organization_collectedfrom" style="display:block">
1256
                              <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">
1257
                                 <tr>
1258
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"collectedfrom"</span><span class="tAN"> type=</span><span class="tAV">"namedIdElementType"</span><span class="tEl">&gt;</span><span class="tI">
1259
  </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
1260
    </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 organization has been collected from.</span><span class="tEl">&lt;/xs:documentation&gt;</span><span class="tI">
1261
  </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
1262
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
1263
                                 </tr>
1264
                              </table>
1265
                           </div>
1266
                        </td>
1267
                     </tr>
1268
                     <tr>
1269
                        <td class="firstColumn"><b>Schema location</b></td>
1270
                        <td>https://www.openaire.eu/schema/1.0/oaf-org-1.0.xsd</td>
1271
                     </tr>
1272
                  </tbody>
1273
               </table>
1274
            </td>
1275
            <td class="rt_lineRight"></td>
1276
         </tr>
1277
         <tr>
1278
            <td class="rt_cornerBottomLeft"></td>
1279
            <td class="rt_lineBottom"></td>
1280
            <td class="rt_cornerBottomRight"></td>
1281
         </tr>
1282
      </table><a id="organization_pid"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-org-1_0_xsd.html#organization" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization</a></b> / pid</span></div>
1283
      <table class="rt">
1284
         <tr>
1285
            <td class="rt_cornerTopLeft"></td>
1286
            <td class="rt_lineTop"></td>
1287
            <td class="rt_cornerTopRight"></td>
1288
         </tr>
1289
         <tr>
1290
            <td class="rt_lineLeft"></td>
1291
            <td class="rt_content">
1292
               <table class="component">
1293
                  <tbody>
1294
                     <tr>
1295
                        <td class="firstColumn"><b>Namespace</b></td>
1296
                        <td>http://namespace.openaire.eu/oaf</td>
1297
                     </tr>
1298
                     <tr>
1299
                        <td class="firstColumn">
1300
                           <div class="floatLeft"><b>Diagram</b></div>
1301
                           <div class="floatRight"><input id="button_diagram_organization_pid" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_organization_pid');" class="control" /></div>
1302
                        </td>
1303
                        <td class="diagram">
1304
                           <div id="diagram_organization_pid" style="display:block"><img alt="Diagram" border="0" src="img/oaf-org-1_0_xsd_Element_pid.jpeg" usemap="#oaf-org-1_0_xsd_Element_pid" /><map name="oaf-org-1_0_xsd_Element_pid" id="oaf-org-1_0_xsd_Element_pid">
1305
                                 <area alt="oaf-common-1_0_xsd.tmp#typedElementType_type" href="oaf-common-1_0_xsd.html#typedElementType_type" coords="107,157,167,181" />
1306
                                 <area alt="oaf-common-1_0_xsd.tmp#optionalInferenceAttrGroup" href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup" coords="110,194,314,220" />
1307
                                 <area alt="oaf-common-1_0_xsd.tmp#typedElementType" href="oaf-common-1_0_xsd.html#typedElementType" coords="82,3,231,25" /></map></div>
1308
                        </td>
1309
                     </tr>
1310
                     <tr>
1311
                        <td class="firstColumn"><b>Type</b></td>
1312
                        <td><b><a href="oaf-common-1_0_xsd.html#typedElementType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">typedElementType</a></b></td>
1313
                     </tr>
1314
                     <tr>
1315
                        <td class="firstColumn">
1316
                           <div class="floatLeft"><b>Properties</b></div>
1317
                           <div class="floatRight"><input id="button_properties_organization_pid" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_organization_pid');" class="control" /></div>
1318
                        </td>
1319
                        <td>
1320
                           <div id="properties_organization_pid" style="display:block">
1321
                              <table class="propertiesTable">
1322
                                 <tr>
1323
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
1324
                                    <td><b>complex</b></td>
1325
                                 </tr>
1326
                              </table>
1327
                           </div>
1328
                        </td>
1329
                     </tr>
1330
                     <tr>
1331
                        <td class="firstColumn">
1332
                           <div class="floatLeft"><b>Attributes</b></div>
1333
                           <div class="floatRight"><input id="button_attributes_organization_pid" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_organization_pid');" class="control" /></div>
1334
                        </td>
1335
                        <td>
1336
                           <div id="attributes_organization_pid" style="display:block">
1337
                              <table class="attributesTable">
1338
                                 <thead>
1339
                                    <tr>
1340
                                       <th>QName</th>
1341
                                       <th width="10%">Type</th>
1342
                                       <th width="5%">Use</th>
1343
                                       <th>Annotation</th>
1344
                                    </tr>
1345
                                 </thead>
1346
                                 <tr>
1347
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferenceprovenance</a></b></td>
1348
                                    <td><b>xs:string</b></td>
1349
                                    <td>optional</td>
1350
                                    <td>
1351
                                       <div class="annotation">
1352
                                          <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">
1353
                                             <tr>
1354
                                                <td width="100%"><pre><span class="tT">Which algorithm inferred the current property.</span></pre></td>
1355
                                             </tr>
1356
                                          </table>
1357
                                       </div>
1358
                                    </td>
1359
                                 </tr>
1360
                                 <tr>
1361
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">inferred</a></b></td>
1362
                                    <td><b>xs:boolean</b></td>
1363
                                    <td>optional</td>
1364
                                    <td>
1365
                                       <div class="annotation">
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="tT">True if this information has been inferred by the automatic</span><span class="tI">
1369
</span><span class="tT">inference algorithms run by OpenAIRE.</span></pre></td>
1370
                                             </tr>
1371
                                          </table>
1372
                                       </div>
1373
                                    </td>
1374
                                 </tr>
1375
                                 <tr>
1376
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#optionalInferenceAttrGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">trust</a></b></td>
1377
                                    <td><b>xs:string</b></td>
1378
                                    <td>optional</td>
1379
                                    <td>
1380
                                       <div class="annotation">
1381
                                          <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">
1382
                                             <tr>
1383
                                                <td width="100%"><pre><span class="tT">Value of trust of this information in the range [0,1]. More the</span><span class="tI">
1384
</span><span class="tT">value, more trustworthy is the information.</span></pre></td>
1385
                                             </tr>
1386
                                          </table>
1387
                                       </div>
1388
                                    </td>
1389
                                 </tr>
1390
                                 <tr>
1391
                                    <td class="firstColumn"><b><a href="oaf-common-1_0_xsd.html#typedElementType_type" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">type</a></b></td>
1392
                                    <td></td>
1393
                                    <td>required</td>
1394
                                    <td>
1395
                                       <div class="annotation"></div>
1396
                                    </td>
1397
                                 </tr>
1398
                              </table>
1399
                           </div>
1400
                        </td>
1401
                     </tr>
1402
                     <tr>
1403
                        <td class="firstColumn">
1404
                           <div class="floatLeft"><b>Source</b></div>
1405
                           <div class="floatRight"><input id="button_source_organization_pid" type="image" src="img/btM.gif" value="-" onclick="switchState('source_organization_pid');" class="control" /></div>
1406
                        </td>
1407
                        <td>
1408
                           <div id="source_organization_pid" style="display:block">
1409
                              <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">
1410
                                 <tr>
1411
                                    <td width="100%"><pre><span class="tEl">&lt;xs:element</span><span class="tAN"> name=</span><span class="tAV">"pid"</span><span class="tAN"> type=</span><span class="tAV">"typedElementType"</span><span class="tEl">/&gt;</span></pre></td>
1412
                                 </tr>
1413
                              </table>
1414
                           </div>
1415
                        </td>
1416
                     </tr>
1417
                     <tr>
1418
                        <td class="firstColumn"><b>Schema location</b></td>
1419
                        <td>https://www.openaire.eu/schema/1.0/oaf-org-1.0.xsd</td>
1420
                     </tr>
1421
                  </tbody>
1422
               </table>
1423
            </td>
1424
            <td class="rt_lineRight"></td>
1425
         </tr>
1426
         <tr>
1427
            <td class="rt_cornerBottomLeft"></td>
1428
            <td class="rt_lineBottom"></td>
1429
            <td class="rt_cornerBottomRight"></td>
1430
         </tr>
1431
      </table><a id="organization_rels"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf-org-1_0_xsd.html#organization" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-1.0.xsd')">organization</a></b> / rels</span></div>
1432
      <table class="rt">
1433
         <tr>
1434
            <td class="rt_cornerTopLeft"></td>
1435
            <td class="rt_lineTop"></td>
1436
            <td class="rt_cornerTopRight"></td>
1437
         </tr>
1438
         <tr>
1439
            <td class="rt_lineLeft"></td>
1440
            <td class="rt_content">
1441
               <table class="component">
1442
                  <tbody>
1443
                     <tr>
1444
                        <td class="firstColumn"><b>Namespace</b></td>
1445
                        <td>http://namespace.openaire.eu/oaf</td>
1446
                     </tr>
1447
                     <tr>
1448
                        <td class="firstColumn">
1449
                           <div class="floatLeft"><b>Annotations</b></div>
1450
                           <div class="floatRight"><input id="button_annotations_organization_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_organization_rels');" class="control" /></div>
1451
                        </td>
1452
                        <td>
1453
                           <div id="annotations_organization_rels" style="display:block">
1454
                              <div class="annotation">
1455
                                 <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">
1456
                                    <tr>
1457
                                       <td width="100%"><pre><span class="tT">Relationships to other entities.</span></pre></td>
1458
                                    </tr>
1459
                                 </table>
1460
                              </div>
1461
                           </div>
1462
                        </td>
1463
                     </tr>
1464
                     <tr>
1465
                        <td class="firstColumn">
1466
                           <div class="floatLeft"><b>Diagram</b></div>
1467
                           <div class="floatRight"><input id="button_diagram_organization_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_organization_rels');" class="control" /></div>
1468
                        </td>
1469
                        <td class="diagram">
1470
                           <div id="diagram_organization_rels" style="display:block"><img alt="Diagram" border="0" src="img/oaf-org-1_0_xsd_Element_rels.jpeg" usemap="#oaf-org-1_0_xsd_Element_rels" /><map name="oaf-org-1_0_xsd_Element_rels" id="oaf-org-1_0_xsd_Element_rels">
1471
                                 <area alt="oaf-common-1_0_xsd.tmp#relsType_rel" href="oaf-common-1_0_xsd.html#relsType_rel" coords="205,44,256,68" />
1472
                                 <area alt="oaf-common-1_0_xsd.tmp#relsType" href="oaf-common-1_0_xsd.html#relsType" coords="123,3,220,25" /></map></div>
1473
                        </td>
1474
                     </tr>
1475
                     <tr>
1476
                        <td class="firstColumn"><b>Type</b></td>
1477
                        <td><b><a href="oaf-common-1_0_xsd.html#relsType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">relsType</a></b></td>
1478
                     </tr>
1479
                     <tr>
1480
                        <td class="firstColumn">
1481
                           <div class="floatLeft"><b>Properties</b></div>
1482
                           <div class="floatRight"><input id="button_properties_organization_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_organization_rels');" class="control" /></div>
1483
                        </td>
1484
                        <td>
1485
                           <div id="properties_organization_rels" style="display:block">
1486
                              <table class="propertiesTable">
1487
                                 <tr>
1488
                                    <td class="firstColumn" style="white-space: nowrap;">content</td>
1489
                                    <td><b>complex</b></td>
1490
                                 </tr>
1491
                              </table>
1492
                           </div>
1493
                        </td>
1494
                     </tr>
1495
                     <tr>
1496
                        <td class="firstColumn"><b>Model</b><div class="floatRight"><input id="button_model_organization_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('model_organization_rels');" class="control" /></div>
1497
                        </td>
1498
                        <td>
1499
                           <div id="model_organization_rels" style="display:block"><b><a href="oaf-common-1_0_xsd.html#relsType_rel" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">rel{0,1}</a></b></div>
1500
                        </td>
1501
                     </tr>
1502
                     <tr>
1503
                        <td class="firstColumn"><b>Children</b></td>
1504
                        <td><b><a href="oaf-common-1_0_xsd.html#relsType_rel" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-1.0.xsd')">rel</a></b></td>
1505
                     </tr>
1506
                     <tr>
1507
                        <td class="firstColumn">
1508
                           <div class="floatLeft"><b>Instance</b></div>
1509
                           <div class="floatRight"><input id="button_instance_organization_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_organization_rels');" class="control" /></div>
1510
                        </td>
1511
                        <td>
1512
                           <div id="instance_organization_rels" style="display:block">
1513
                              <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">
1514
                                 <tr>
1515
                                    <td width="100%"><pre><span class="tEl">&lt;rels</span><span class="tT"> </span><span class="tAN">xmlns=</span><span class="tAV">"http://namespace.openaire.eu/oaf"</span><span class="tEl">&gt;</span><span class="tI">
1516
  </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">
1517
</span><span class="tEl">&lt;/rels&gt;</span></pre></td>
1518
                                 </tr>
1519
                              </table>
1520
                           </div>
1521
                        </td>
1522
                     </tr>
1523
                     <tr>
1524
                        <td class="firstColumn">
1525
                           <div class="floatLeft"><b>Source</b></div>
1526
                           <div class="floatRight"><input id="button_source_organization_rels" type="image" src="img/btM.gif" value="-" onclick="switchState('source_organization_rels');" class="control" /></div>
1527
                        </td>
1528
                        <td>
1529
                           <div id="source_organization_rels" style="display:block">
1530
                              <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">
1531
                                 <tr>
1532
                                    <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">
1533
  </span><span class="tEl">&lt;xs:annotation</span><span class="tEl">&gt;</span><span class="tI">
1534
    </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">
1535
  </span><span class="tEl">&lt;/xs:annotation&gt;</span><span class="tI">
1536
</span><span class="tEl">&lt;/xs:element&gt;</span></pre></td>
1537
                                 </tr>
1538
                              </table>
1539
                           </div>
1540
                        </td>
1541
                     </tr>
1542
                     <tr>
1543
                        <td class="firstColumn"><b>Schema location</b></td>
1544
                        <td>https://www.openaire.eu/schema/1.0/oaf-org-1.0.xsd</td>
1545
                     </tr>
1546
                  </tbody>
1547
               </table>
1548
            </td>
1549
            <td class="rt_lineRight"></td>
1550
         </tr>
1551
         <tr>
1552
            <td class="rt_cornerBottomLeft"></td>
1553
            <td class="rt_lineBottom"></td>
1554
            <td class="rt_cornerBottomRight"></td>
1555
         </tr>
1556
      </table>
1557
      <div class="footer">
1558
         <hr />
1559
         <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.
1560
         </div>
1561
      </div><script type="text/javascript">
1562
         <!--
1563
                     // The namespace is the selected option in the TOC combo.
1564
                    
1565
                     // Floats the toolbar.
1566
                     var globalControls = getElementObject("global_controls"); 
1567
                     
1568
                     if(globalControls != null){
1569
	                     var browser=navigator.appName;
1570
						 var version = parseFloat(navigator.appVersion.split('MSIE')[1]);
1571
						 
1572
						 var IE6 = false;
1573
						 if ((browser=="Microsoft Internet Explorer") && (version < 7)){
1574
						 	IE6 = true;
1575
						 }
1576
	
1577
	                     //alert (IE6 + " |V| " + version);
1578
	                     
1579
	                     if(IE6){
1580
	                     	// On IE 6 the 'fixed' property is not supported. We must use javascript. 
1581
	                         globalControls.style.position='absolute';                         
1582
	                         // The global controls will do not exist in the TOC frame, when chunking.
1583
	                         findAndFloat("global_controls", 225, 30);    
1584
	                     } else {
1585
	                      	  globalControls.style.position='fixed';                     	
1586
	                     }
1587
	                     
1588
	                     globalControls.style.right='0';                       
1589
                     }
1590
                //--></script></body>
1591
</html>
(9-9/14)