Project

General

Profile

1
<!DOCTYPE html
2
  PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//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 </title>
7
      <link rel="stylesheet" href="docHtml.css" type="text/css" /><script type="text/javascript">
8
         <!--
9
        
10
      
11
        var button_prefix = 'button_';
12
        
13
        /**
14
        * Returns an element in the current HTML document.
15
        *
16
        * @param elementID Identifier of HTML element
17
        * @return               HTML element object
18
        */
19
        function getElementObject(elementID) {
20
            var elemObj = null;
21
            if (document.getElementById) {
22
                elemObj = document.getElementById(elementID);
23
            }
24
            return elemObj;
25
        }
26
        
27
        /**
28
        * Switches the state of a collapseable box, e.g.
29
        * if it's opened, it'll be closed, and vice versa.
30
        *
31
        * @param boxID Identifier of box
32
        */
33
        function switchState(boxID) {
34
            var boxObj = getElementObject(boxID);
35
            var buttonObj = getElementObject(button_prefix + boxID);
36
            if (boxObj == null || buttonObj == null) {
37
                // Box or button not found
38
            } else if (boxObj.style.display == "none") {
39
                // Box is closed, so open it
40
                openBox(boxObj, buttonObj);
41
            } else if (boxObj.style.display == "block") {
42
                // Box is opened, so close it
43
                closeBox(boxObj, buttonObj);
44
            }
45
        }
46
        
47
        /**
48
        * Opens a collapseable box.
49
        *
50
        * @param boxObj       Collapseable box
51
        * @param buttonObj Button controlling box
52
        */
53
        function openBox(boxObj, buttonObj) {
54
            if (boxObj == null || buttonObj == null) {
55
                // Box or button not found
56
            } else {
57
                // Change 'display' CSS property of box
58
                boxObj.style.display = "block";
59
                
60
                // Change text of button
61
                if (boxObj.style.display == "block") {
62
                    buttonObj.src = "img/btM.gif";
63
                }
64
            }
65
        }
66
        
67
        /**
68
        * Closes a collapseable box.
69
        *
70
        * @param boxObj       Collapseable box
71
        * @param buttonObj Button controlling box
72
        */
73
        function closeBox(boxObj, buttonObj) {
74
            if (boxObj == null || buttonObj == null) {
75
                // Box or button not found
76
            } else {
77
                // Change 'display' CSS property of box
78
                boxObj.style.display = "none";
79
                
80
                // Change text of button
81
                if (boxObj.style.display == "none") {
82
                    buttonObj.src = "img/btP.gif";
83
                }
84
            }
85
        }
86
    
87
       function switchStateForAll(buttonObj, boxList) {
88
            if (buttonObj == null) {
89
                // button not found
90
            } else if (buttonObj.value == "+") {
91
                // Expand all
92
                expandAll(boxList);
93
                buttonObj.value = "-";
94
            } else if (buttonObj.value == "-") {
95
                // Collapse all
96
                collapseAll(boxList);
97
                buttonObj.value = "+";
98
            }
99
        }
100
        
101
        /**
102
        * Closes all boxes in a given list.
103
        *
104
        * @param boxList Array of box IDs
105
        */
106
        function collapseAll(boxList) {
107
            var idx;
108
            for (idx = 0; idx < boxList.length; idx++) {
109
                var boxObj = getElementObject(boxList[idx]);
110
                var buttonObj = getElementObject(button_prefix + boxList[idx]);
111
                closeBox(boxObj, buttonObj);
112
            }
113
        }
114
            
115
        /**
116
        * Open all boxes in a given list.
117
        *
118
        * @param boxList Array of box IDs
119
        */
120
        function expandAll(boxList) {
121
            var idx;
122
            for (idx = 0; idx < boxList.length; idx++) {
123
                var boxObj = getElementObject(boxList[idx]);
124
                var buttonObj = getElementObject(button_prefix + boxList[idx]);
125
                openBox(boxObj, buttonObj);
126
            }
127
        }
128
        
129
        /**
130
         * Update the message presented in the title of the html page.
131
         * - If the documentation was splited by namespace we present something like: "Documentation for namespace 'ns'"
132
         * - If the documentation was splited by location we present somehing like: "Documentation for 'Schema.xsd'"
133
         * - If no split we always present: "Documentation for 'MainSchema.xsd'"
134
         */
135
        function updatePageTitle(message) {
136
            top.document.title = message;
137
        }
138
        
139
          
140
                    
141
         /**
142
          * Finds an HTML element by its ID and makes it floatable over the normal content.
143
          *
144
          * @param x_displacement The difference in pixels to the right side of the window from 
145
          *           the left side of the element.
146
          * @param y_displacement The difference in pixels to the right side of the window from 
147
          *           the top of the element.          
148
          */
149
         function findAndFloat(id, x_displacement, y_displacement){
150

    
151
            var element = getElementObject(id);            
152
            
153
            window[id + "_obj"] = element;
154
            
155
            if(document.layers) {
156
               element.style = element;
157
            }
158
            
159
            element.current_y = y_displacement;      
160
            element.first_time = true;
161
         
162
            element.floatElement = function(){
163
               // It may be closed by an user action.
164
                
165
               // Target X and Y coordinates.
166
               var x, y;
167
               
168
               var myWidth = 0, myHeight = 0;
169
               if( typeof( window.innerWidth ) == 'number' ) {
170
                  //Non-IE
171
                  myWidth = window.innerWidth;
172
                  myHeight = window.innerHeight;
173
               } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
174
                  //IE 6+ in 'standards compliant mode'
175
                  myWidth = document.documentElement.clientWidth;
176
                  myHeight = document.documentElement.clientHeight;
177
               } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
178
                  //IE 4 compatible
179
                  myWidth = document.body.clientWidth;
180
                  myHeight = document.body.clientHeight;
181
               }
182
               
183
               
184
               x = myWidth - x_displacement;
185
               
186
               var ns = (navigator.appName.indexOf("Netscape") != -1);               
187
               y = ns ? pageYOffset : document.documentElement && document.documentElement.scrollTop ? 
188
                  document.documentElement.scrollTop : document.body.scrollTop;               
189
               y = y + y_displacement;               
190
               
191
               // The current y is the current coordinate of the floating element.
192
               // This should be at the limit the y target coordinate.
193
               this.current_y += (y - this.current_y)/1.25;
194
               
195
               // Add the pixels constant after the values
196
               // and move the element.
197
               var px = document.layers ? "" : "px";
198
               this.style.left =  x + px;
199
               this.style.top =  this.current_y + px;
200
                              
201
               setTimeout(this.id + "_obj.floatElement()", 100);
202
            }
203
            
204
            element.floatElement();
205
            return element;
206
          }
207

    
208
         /**
209
          * Finds an HTML element by its ID and makes it floatable over the normal content.
210
          *
211
          * @param x_displacement The difference in pixels to the right side of the window from 
212
          *           the left side of the element.
213
          * @param y_displacement The difference in pixels to the right side of the window from 
214
          *           the top of the element.          
215
          */
216
         function selectTOCGroupBy(id, isChunked, indexFileLocation, indexFileNamespace, indexFileComponent){
217

    
218
            if (!isChunked) {
219
             var selectIds = new Array('toc_group_by_namespace', 'toc_group_by_location', 'toc_group_by_component_type');
220
             // Make all the tabs invisible.
221
               for (i = 0; i < 3; i++){
222
                  var tab = getElementObject(selectIds[i]);
223
                  tab.style.display = 'none';
224
               }
225
               var selTab = getElementObject(id);
226
               selTab.style.display = 'block';
227
            } else {
228
             if (id == 'toc_group_by_namespace') {
229
               parent.indexFrame.location = indexFileNamespace;
230
             } else  if (id == 'toc_group_by_location') {
231
               parent.indexFrame.location = indexFileLocation;
232
             } else  if (id == 'toc_group_by_component_type') {
233
              parent.indexFrame.location = indexFileComponent;
234
             }
235
            }
236
         }
237
          
238

    
239
    
240
                        //--></script></head>
241
   <body>
242
      <h2><a id="INDEX">Table of Contents</a></h2>
243
      <p><a href="oaf-0.3.indexList.html">Components</a><span> | </span><a href="schHierarchy.html">Resource Hierarchy</a></p>
244
      <hr />
245
      <div class="toc">
246
         <form action="none">
247
            <div><span> Group by: <select id="selectTOC" onchange="selectTOCGroupBy(this.options[this.selectedIndex].value, true, 'oaf-0.3.indexList.html', 'oaf-0.3.indexListns.html', 'oaf-0.3.indexListcomp.html');">
248
                     <option value="toc_group_by_namespace" selected="selected">Namespace</option>
249
                     <option value="toc_group_by_location">Location</option>
250
                     <option value="toc_group_by_component_type">Component Type</option></select></span></div>
251
         </form>
252
         <div class="level1" id="toc_group_by_namespace" style="display:block">
253
            <div>
254
               <div class="level2">
255
                  <p><input id="button_boxIdNamespace1" type="image" value="-" src="img/btM.gif" onclick="switchState('boxIdNamespace1');" class="control" /><span class="indexGroupTitle">http://namespace.openaire.eu/oaf</span></p>
256
                  <div id="boxIdNamespace1" style="display:block">
257
                     <div class="horizontalLayout">
258
                        <table class="rt">
259
                           <tr>
260
                              <td class="rt_cornerTopLeft"></td>
261
                              <td class="rt_lineTop"></td>
262
                              <td class="rt_cornerTopRight"></td>
263
                           </tr>
264
                           <tr>
265
                              <td class="rt_lineLeft"></td>
266
                              <td class="rt_content">
267
                                 <table class="componentGroup">
268
                                    <tbody>
269
                                       <tr>
270
                                          <td class="componentGroup"><input id="button_boxIdNamespace1Element" type="image" value="-" src="img/btM.gif" onclick="switchState('boxIdNamespace1Element');" class="control" /></td>
271
                                          <td class="componentGroup">
272
                                             <div class="componentGroupTitle">Elements</div>
273
                                          </td>
274
                                       </tr>
275
                                       <tr>
276
                                          <td class="componentGroup"></td>
277
                                          <td class="componentGroup">
278
                                             <div id="boxIdNamespace1Element" class="componentGroup" style="display:block">
279
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource</a></b></div>
280
                                                <div><b><a href="oaf-0_3_xsd.html#entity" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-0.3.xsd')">entity</a></b></div>
281
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization</a></b></div>
282
                                                <div><b><a href="oaf-person-0_3_xsd.html#person" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-person-0.3.xsd')">person</a></b></div>
283
                                                <div><b><a href="oaf-project-0_3_xsd.html#project" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project</a></b></div>
284
                                                <div><b><a href="oaf-result-0_3_xsd.html#result" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result</a></b></div>
285
                                             </div>
286
                                          </td>
287
                                       </tr>
288
                                    </tbody>
289
                                 </table>
290
                              </td>
291
                              <td class="rt_lineRight"></td>
292
                           </tr>
293
                           <tr>
294
                              <td class="rt_cornerBottomLeft"></td>
295
                              <td class="rt_lineBottom"></td>
296
                              <td class="rt_cornerBottomRight"></td>
297
                           </tr>
298
                        </table>
299
                     </div>
300
                     <div class="horizontalLayout">
301
                        <table class="rt">
302
                           <tr>
303
                              <td class="rt_cornerTopLeft"></td>
304
                              <td class="rt_lineTop"></td>
305
                              <td class="rt_cornerTopRight"></td>
306
                           </tr>
307
                           <tr>
308
                              <td class="rt_lineLeft"></td>
309
                              <td class="rt_content">
310
                                 <table class="componentGroup">
311
                                    <tbody>
312
                                       <tr>
313
                                          <td class="componentGroup"><input id="button_boxIdNamespace1Complex_Type" type="image" value="-" src="img/btM.gif" onclick="switchState('boxIdNamespace1Complex_Type');" class="control" /></td>
314
                                          <td class="componentGroup">
315
                                             <div class="componentGroupTitle">Complex Types</div>
316
                                          </td>
317
                                       </tr>
318
                                       <tr>
319
                                          <td class="componentGroup"></td>
320
                                          <td class="componentGroup">
321
                                             <div id="boxIdNamespace1Complex_Type" class="componentGroup" style="display:block">
322
                                                <div><b><a href="oaf-result-0_3_xsd.html#categoryType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">categoryType</a></b></div>
323
                                                <div><b><a href="oaf-org-0_3_xsd.html#childrenOrg" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">childrenOrg</a></b></div>
324
                                                <div><b><a href="oaf-result-0_3_xsd.html#childrenResult" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">childrenResult</a></b></div>
325
                                                <div><b><a href="oaf-common-0_3_xsd.html#classedSchemedElement" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">classedSchemedElement</a></b></div>
326
                                                <div><b><a href="oaf-result-0_3_xsd.html#conceptType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">conceptType</a></b></div>
327
                                                <div><b><a href="oaf-result-0_3_xsd.html#contextType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">contextType</a></b></div>
328
                                                <div><b><a href="oaf-common-0_3_xsd.html#datainfoType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">datainfoType</a></b></div>
329
                                                <div><b><a href="oaf-common-0_3_xsd.html#externalreferenceType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">externalreferenceType</a></b></div>
330
                                                <div><b><a href="oaf-common-0_3_xsd.html#extraInfoType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">extraInfoType</a></b></div>
331
                                                <div><b><a href="oaf-common-0_3_xsd.html#funderFlatType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">funderFlatType</a></b></div>
332
                                                <div><b><a href="oaf-project-0_3_xsd.html#funderType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">funderType</a></b></div>
333
                                                <div><b><a href="oaf-common-0_3_xsd.html#fundingFlatType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">fundingFlatType</a></b></div>
334
                                                <div><b><a href="oaf-project-0_3_xsd.html#fundingParentType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">fundingParentType</a></b></div>
335
                                                <div><b><a href="oaf-project-0_3_xsd.html#fundingTreeType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">fundingTreeType</a></b></div>
336
                                                <div><b><a href="oaf-project-0_3_xsd.html#fundingType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">fundingType</a></b></div>
337
                                                <div><b><a href="oaf-common-0_3_xsd.html#inferenceExtendedBooleanType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">inferenceExtendedBooleanType</a></b></div>
338
                                                <div><b><a href="oaf-common-0_3_xsd.html#inferenceExtendedStringType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">inferenceExtendedStringType</a></b></div>
339
                                                <div><b><a href="oaf-result-0_3_xsd.html#instanceType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">instanceType</a></b></div>
340
                                                <div><b><a href="oaf-result-0_3_xsd.html#journalType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">journalType</a></b></div>
341
                                                <div><b><a href="oaf-common-0_3_xsd.html#labeledIdElement" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">labeledIdElement</a></b></div>
342
                                                <div><b><a href="oaf-common-0_3_xsd.html#namedFundingLevel" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">namedFundingLevel</a></b></div>
343
                                                <div><b><a href="oaf-common-0_3_xsd.html#namedIdElement" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">namedIdElement</a></b></div>
344
                                                <div><b><a href="oaf-common-0_3_xsd.html#optionalClassedSchemedElement" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">optionalClassedSchemedElement</a></b></div>
345
                                                <div><b><a href="oaf-common-0_3_xsd.html#relToType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relToType</a></b></div>
346
                                                <div><b><a href="oaf-common-0_3_xsd.html#relType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relType</a></b></div>
347
                                                <div><b><a href="oaf-common-0_3_xsd.html#relsType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relsType</a></b></div>
348
                                                <div><b><a href="oaf-result-0_3_xsd.html#resultChildrenType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">resultChildrenType</a></b></div>
349
                                                <div><b><a href="oaf-result-0_3_xsd.html#webresourceType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">webresourceType</a></b></div>
350
                                             </div>
351
                                          </td>
352
                                       </tr>
353
                                    </tbody>
354
                                 </table>
355
                              </td>
356
                              <td class="rt_lineRight"></td>
357
                           </tr>
358
                           <tr>
359
                              <td class="rt_cornerBottomLeft"></td>
360
                              <td class="rt_lineBottom"></td>
361
                              <td class="rt_cornerBottomRight"></td>
362
                           </tr>
363
                        </table>
364
                     </div>
365
                     <div class="horizontalLayout">
366
                        <table class="rt">
367
                           <tr>
368
                              <td class="rt_cornerTopLeft"></td>
369
                              <td class="rt_lineTop"></td>
370
                              <td class="rt_cornerTopRight"></td>
371
                           </tr>
372
                           <tr>
373
                              <td class="rt_lineLeft"></td>
374
                              <td class="rt_content">
375
                                 <table class="componentGroup">
376
                                    <tbody>
377
                                       <tr>
378
                                          <td class="componentGroup"><input id="button_boxIdNamespace1Simple_Type" type="image" value="-" src="img/btM.gif" onclick="switchState('boxIdNamespace1Simple_Type');" class="control" /></td>
379
                                          <td class="componentGroup">
380
                                             <div class="componentGroupTitle">Simple Types</div>
381
                                          </td>
382
                                       </tr>
383
                                       <tr>
384
                                          <td class="componentGroup"></td>
385
                                          <td class="componentGroup">
386
                                             <div id="boxIdNamespace1Simple_Type" class="componentGroup" style="display:block">
387
                                                <div><b><a href="oaf-common-0_3_xsd.html#boolOrEmptyType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">boolOrEmptyType</a></b></div>
388
                                                <div><b><a href="oaf-common-0_3_xsd.html#emptyType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">emptyType</a></b></div>
389
                                                <div><b><a href="oaf-common-0_3_xsd.html#stringOrEmptyType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">stringOrEmptyType</a></b></div>
390
                                             </div>
391
                                          </td>
392
                                       </tr>
393
                                    </tbody>
394
                                 </table>
395
                              </td>
396
                              <td class="rt_lineRight"></td>
397
                           </tr>
398
                           <tr>
399
                              <td class="rt_cornerBottomLeft"></td>
400
                              <td class="rt_lineBottom"></td>
401
                              <td class="rt_cornerBottomRight"></td>
402
                           </tr>
403
                        </table>
404
                     </div>
405
                     <div class="horizontalLayout">
406
                        <table class="rt">
407
                           <tr>
408
                              <td class="rt_cornerTopLeft"></td>
409
                              <td class="rt_lineTop"></td>
410
                              <td class="rt_cornerTopRight"></td>
411
                           </tr>
412
                           <tr>
413
                              <td class="rt_lineLeft"></td>
414
                              <td class="rt_content">
415
                                 <table class="componentGroup">
416
                                    <tbody>
417
                                       <tr>
418
                                          <td class="componentGroup"><input id="button_boxIdNamespace1Element_Group" type="image" value="-" src="img/btM.gif" onclick="switchState('boxIdNamespace1Element_Group');" class="control" /></td>
419
                                          <td class="componentGroup">
420
                                             <div class="componentGroupTitle">Element Groups</div>
421
                                          </td>
422
                                       </tr>
423
                                       <tr>
424
                                          <td class="componentGroup"></td>
425
                                          <td class="componentGroup">
426
                                             <div id="boxIdNamespace1Element_Group" class="componentGroup" style="display:block">
427
                                                <div><b><a href="oaf-common-0_3_xsd.html#fundingGroup" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">fundingGroup</a></b></div>
428
                                                <div><b><a href="oaf-common-0_3_xsd.html#relDataSourceGroup" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relDataSourceGroup</a></b></div>
429
                                                <div><b><a href="oaf-common-0_3_xsd.html#relOrganizationGroup" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relOrganizationGroup</a></b></div>
430
                                                <div><b><a href="oaf-common-0_3_xsd.html#relPersonGroup" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relPersonGroup</a></b></div>
431
                                                <div><b><a href="oaf-common-0_3_xsd.html#relProjectGroup" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relProjectGroup</a></b></div>
432
                                                <div><b><a href="oaf-common-0_3_xsd.html#relResultGroup" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relResultGroup</a></b></div>
433
                                             </div>
434
                                          </td>
435
                                       </tr>
436
                                    </tbody>
437
                                 </table>
438
                              </td>
439
                              <td class="rt_lineRight"></td>
440
                           </tr>
441
                           <tr>
442
                              <td class="rt_cornerBottomLeft"></td>
443
                              <td class="rt_lineBottom"></td>
444
                              <td class="rt_cornerBottomRight"></td>
445
                           </tr>
446
                        </table>
447
                     </div>
448
                     <div class="horizontalLayout">
449
                        <table class="rt">
450
                           <tr>
451
                              <td class="rt_cornerTopLeft"></td>
452
                              <td class="rt_lineTop"></td>
453
                              <td class="rt_cornerTopRight"></td>
454
                           </tr>
455
                           <tr>
456
                              <td class="rt_lineLeft"></td>
457
                              <td class="rt_content">
458
                                 <table class="componentGroup">
459
                                    <tbody>
460
                                       <tr>
461
                                          <td class="componentGroup"><input id="button_boxIdNamespace1Attribute_Group" type="image" value="-" src="img/btM.gif" onclick="switchState('boxIdNamespace1Attribute_Group');" class="control" /></td>
462
                                          <td class="componentGroup">
463
                                             <div class="componentGroupTitle">Attribute Groups</div>
464
                                          </td>
465
                                       </tr>
466
                                       <tr>
467
                                          <td class="componentGroup"></td>
468
                                          <td class="componentGroup">
469
                                             <div id="boxIdNamespace1Attribute_Group" class="componentGroup" style="display:block">
470
                                                <div><b><a href="oaf-common-0_3_xsd.html#classSchemeAttrGroup" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">classSchemeAttrGroup</a></b></div>
471
                                                <div><b><a href="oaf-common-0_3_xsd.html#optionalClassSchemeAttrGroup" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">optionalClassSchemeAttrGroup</a></b></div>
472
                                                <div><b><a href="oaf-common-0_3_xsd.html#optionalInferenceAttrGroup" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">optionalInferenceAttrGroup</a></b></div>
473
                                             </div>
474
                                          </td>
475
                                       </tr>
476
                                    </tbody>
477
                                 </table>
478
                              </td>
479
                              <td class="rt_lineRight"></td>
480
                           </tr>
481
                           <tr>
482
                              <td class="rt_cornerBottomLeft"></td>
483
                              <td class="rt_lineBottom"></td>
484
                              <td class="rt_cornerBottomRight"></td>
485
                           </tr>
486
                        </table>
487
                     </div>
488
                     <div style="clear:left"></div>
489
                  </div>
490
               </div>
491
               <div class="level2">
492
                  <p><input id="button_boxIdNamespace2" type="image" value="-" src="img/btM.gif" onclick="switchState('boxIdNamespace2');" class="control" /><span class="indexGroupTitle">No namespace</span></p>
493
                  <div id="boxIdNamespace2" style="display:block">
494
                     <div class="horizontalLayout">
495
                        <table class="rt">
496
                           <tr>
497
                              <td class="rt_cornerTopLeft"></td>
498
                              <td class="rt_lineTop"></td>
499
                              <td class="rt_cornerTopRight"></td>
500
                           </tr>
501
                           <tr>
502
                              <td class="rt_lineLeft"></td>
503
                              <td class="rt_content">
504
                                 <table class="componentGroup">
505
                                    <tbody>
506
                                       <tr>
507
                                          <td class="componentGroup"><input id="button_boxIdNamespace2Element" type="image" value="-" src="img/btM.gif" onclick="switchState('boxIdNamespace2Element');" class="control" /></td>
508
                                          <td class="componentGroup">
509
                                             <div class="componentGroupTitle">Elements</div>
510
                                          </td>
511
                                       </tr>
512
                                       <tr>
513
                                          <td class="componentGroup"></td>
514
                                          <td class="componentGroup">
515
                                             <div id="boxIdNamespace2Element" class="componentGroup" style="display:block">
516
                                                <div><b><a href="oaf-result-0_3_xsd.html#categoryType_concept" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">categoryType/concept</a></b></div>
517
                                                <div><b><a href="oaf-org-0_3_xsd.html#childrenOrg_organization" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">childrenOrg/organization</a></b></div>
518
                                                <div><b><a href="oaf-org-0_3_xsd.html#childrenOrg_childrenOrg_organization_country" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">childrenOrg/organization/country</a></b></div>
519
                                                <div><b><a href="oaf-org-0_3_xsd.html#childrenOrg_childrenOrg_organization_legalname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">childrenOrg/organization/legalname</a></b></div>
520
                                                <div><b><a href="oaf-org-0_3_xsd.html#childrenOrg_childrenOrg_organization_legalshortname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">childrenOrg/organization/legalshortname</a></b></div>
521
                                                <div><b><a href="oaf-org-0_3_xsd.html#childrenOrg_childrenOrg_organization_websiteurl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">childrenOrg/organization/websiteurl</a></b></div>
522
                                                <div><b><a href="oaf-result-0_3_xsd.html#childrenResult_dateofacceptance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">childrenResult/dateofacceptance</a></b></div>
523
                                                <div><b><a href="oaf-result-0_3_xsd.html#childrenResult_publisher" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">childrenResult/publisher</a></b></div>
524
                                                <div><b><a href="oaf-result-0_3_xsd.html#childrenResult_resulttype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">childrenResult/resulttype</a></b></div>
525
                                                <div><b><a href="oaf-result-0_3_xsd.html#childrenResult_title" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">childrenResult/title</a></b></div>
526
                                                <div><b><a href="oaf-result-0_3_xsd.html#conceptType_concept" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">conceptType/concept</a></b></div>
527
                                                <div><b><a href="oaf-result-0_3_xsd.html#contextType_category" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">contextType/category</a></b></div>
528
                                                <div><b><a href="oaf-common-0_3_xsd.html#datainfoType_deletedbyinference" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">datainfoType/deletedbyinference</a></b></div>
529
                                                <div><b><a href="oaf-common-0_3_xsd.html#datainfoType_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">datainfoType/inferenceprovenance</a></b></div>
530
                                                <div><b><a href="oaf-common-0_3_xsd.html#datainfoType_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">datainfoType/inferred</a></b></div>
531
                                                <div><b><a href="oaf-common-0_3_xsd.html#datainfoType_provenanceaction" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">datainfoType/provenanceaction</a></b></div>
532
                                                <div><b><a href="oaf-common-0_3_xsd.html#datainfoType_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">datainfoType/trust</a></b></div>
533
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_accessinfopackage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/accessinfopackage</a></b></div>
534
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_certificates" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/certificates</a></b></div>
535
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_children" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/children</a></b></div>
536
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_citationguidelineurl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/citationguidelineurl</a></b></div>
537
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_collectedfrom" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/collectedfrom</a></b></div>
538
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_contactemail" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/contactemail</a></b></div>
539
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_databaseaccessrestriction" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/databaseaccessrestriction</a></b></div>
540
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_databaseaccesstype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/databaseaccesstype</a></b></div>
541
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_datainfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/datainfo</a></b></div>
542
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_dataprovider" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/dataprovider</a></b></div>
543
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_datasourcetype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/datasourcetype</a></b></div>
544
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_datasourcetypeui" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/datasourcetypeui</a></b></div>
545
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_datauploadrestriction" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/datauploadrestriction</a></b></div>
546
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_datauploadtype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/datauploadtype</a></b></div>
547
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_dateofvalidation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/dateofvalidation</a></b></div>
548
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_description" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/description</a></b></div>
549
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_englishname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/englishname</a></b></div>
550
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_latitude" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/latitude</a></b></div>
551
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_logourl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/logourl</a></b></div>
552
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_longitude" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/longitude</a></b></div>
553
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_missionstatementurl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/missionstatementurl</a></b></div>
554
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_namespaceprefix" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/namespaceprefix</a></b></div>
555
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_odcontenttypes" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/odcontenttypes</a></b></div>
556
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_odlanguages" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/odlanguages</a></b></div>
557
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_odnumberofitems" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/odnumberofitems</a></b></div>
558
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_odnumberofitemsdate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/odnumberofitemsdate</a></b></div>
559
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_odpolicies" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/odpolicies</a></b></div>
560
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_officialname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/officialname</a></b></div>
561
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_openairecompatibility" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/openairecompatibility</a></b></div>
562
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_originalId" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/originalId</a></b></div>
563
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_pid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/pid</a></b></div>
564
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_pidsystems" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/pidsystems</a></b></div>
565
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_policies" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/policies</a></b></div>
566
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_qualitymanagementkind" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/qualitymanagementkind</a></b></div>
567
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_releaseenddate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/releaseenddate</a></b></div>
568
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_releasestartdate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/releasestartdate</a></b></div>
569
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_rels" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/rels</a></b></div>
570
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_serviceprovider" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/serviceprovider</a></b></div>
571
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_subjects" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/subjects</a></b></div>
572
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_versioning" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/versioning</a></b></div>
573
                                                <div><b><a href="oaf-datasource-0_3_xsd.html#datasource_websiteurl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.3.xsd')">datasource/websiteurl</a></b></div>
574
                                                <div><b><a href="oaf-0_3_xsd.html#entity_extraInfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-0.3.xsd')">entity/extraInfo</a></b></div>
575
                                                <div><b><a href="oaf-common-0_3_xsd.html#externalreferenceType_qualifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">externalreferenceType/qualifier</a></b></div>
576
                                                <div><b><a href="oaf-common-0_3_xsd.html#externalreferenceType_refidentifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">externalreferenceType/refidentifier</a></b></div>
577
                                                <div><b><a href="oaf-common-0_3_xsd.html#externalreferenceType_sitename" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">externalreferenceType/sitename</a></b></div>
578
                                                <div><b><a href="oaf-common-0_3_xsd.html#externalreferenceType_url" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">externalreferenceType/url</a></b></div>
579
                                                <div><b><a href="oaf-project-0_3_xsd.html#funderType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">funderType/id</a></b></div>
580
                                                <div><b><a href="oaf-project-0_3_xsd.html#funderType_jurisdiction" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">funderType/jurisdiction</a></b></div>
581
                                                <div><b><a href="oaf-project-0_3_xsd.html#funderType_name" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">funderType/name</a></b></div>
582
                                                <div><b><a href="oaf-project-0_3_xsd.html#funderType_shortname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">funderType/shortname</a></b></div>
583
                                                <div><b><a href="oaf-common-0_3_xsd.html#fundingFlatType_funder" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">fundingFlatType/funder</a></b></div>
584
                                                <div><b><a href="oaf-common-0_3_xsd.html#fundingFlatType_funding_level_0" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">fundingFlatType/funding_level_0</a></b></div>
585
                                                <div><b><a href="oaf-common-0_3_xsd.html#fundingFlatType_funding_level_1" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">fundingFlatType/funding_level_1</a></b></div>
586
                                                <div><b><a href="oaf-common-0_3_xsd.html#fundingFlatType_funding_level_2" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">fundingFlatType/funding_level_2</a></b></div>
587
                                                <div><b><a href="oaf-common-0_3_xsd.html#fundingGroup_contracttype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">fundingGroup/contracttype</a></b></div>
588
                                                <div><b><a href="oaf-common-0_3_xsd.html#fundingGroup_funding" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">fundingGroup/funding</a></b></div>
589
                                                <div><b><a href="oaf-project-0_3_xsd.html#fundingParentType_funding_level_0" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">fundingParentType/funding_level_0</a></b></div>
590
                                                <div><b><a href="oaf-project-0_3_xsd.html#fundingParentType_funding_level_1" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">fundingParentType/funding_level_1</a></b></div>
591
                                                <div><b><a href="oaf-project-0_3_xsd.html#fundingTreeType_funder" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">fundingTreeType/funder</a></b></div>
592
                                                <div><b><a href="oaf-project-0_3_xsd.html#fundingTreeType_funding_level_0" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">fundingTreeType/funding_level_0</a></b></div>
593
                                                <div><b><a href="oaf-project-0_3_xsd.html#fundingTreeType_funding_level_1" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">fundingTreeType/funding_level_1</a></b></div>
594
                                                <div><b><a href="oaf-project-0_3_xsd.html#fundingTreeType_funding_level_2" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">fundingTreeType/funding_level_2</a></b></div>
595
                                                <div><b><a href="oaf-project-0_3_xsd.html#fundingType_class" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">fundingType/class</a></b></div>
596
                                                <div><b><a href="oaf-project-0_3_xsd.html#fundingType_description" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">fundingType/description</a></b></div>
597
                                                <div><b><a href="oaf-project-0_3_xsd.html#fundingType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">fundingType/id</a></b></div>
598
                                                <div><b><a href="oaf-project-0_3_xsd.html#fundingType_name" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">fundingType/name</a></b></div>
599
                                                <div><b><a href="oaf-project-0_3_xsd.html#fundingType_parent" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">fundingType/parent</a></b></div>
600
                                                <div><b><a href="oaf-result-0_3_xsd.html#instanceType_hostedby" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">instanceType/hostedby</a></b></div>
601
                                                <div><b><a href="oaf-result-0_3_xsd.html#instanceType_instancetype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">instanceType/instancetype</a></b></div>
602
                                                <div><b><a href="oaf-result-0_3_xsd.html#instanceType_licence" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">instanceType/licence</a></b></div>
603
                                                <div><b><a href="oaf-result-0_3_xsd.html#instanceType_webresource" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">instanceType/webresource</a></b></div>
604
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_children" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/children</a></b></div>
605
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_collectedfrom" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/collectedfrom</a></b></div>
606
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_country" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/country</a></b></div>
607
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_datainfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/datainfo</a></b></div>
608
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_ecenterprise" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/ecenterprise</a></b></div>
609
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_echighereducation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/echighereducation</a></b></div>
610
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_ecinternationalorganization" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/ecinternationalorganization</a></b></div>
611
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_ecinternationalorganizationeurinterests" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/ecinternationalorganizationeurinterests</a></b></div>
612
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_eclegalbody" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/eclegalbody</a></b></div>
613
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_eclegalperson" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/eclegalperson</a></b></div>
614
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_ecnonprofit" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/ecnonprofit</a></b></div>
615
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_ecnutscode" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/ecnutscode</a></b></div>
616
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_ecresearchorganization" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/ecresearchorganization</a></b></div>
617
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_ecsmevalidated" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/ecsmevalidated</a></b></div>
618
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_legalname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/legalname</a></b></div>
619
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_legalshortname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/legalshortname</a></b></div>
620
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_logourl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/logourl</a></b></div>
621
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_originalId" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/originalId</a></b></div>
622
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_pid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/pid</a></b></div>
623
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_rels" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/rels</a></b></div>
624
                                                <div><b><a href="oaf-org-0_3_xsd.html#organization_websiteurl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">organization/websiteurl</a></b></div>
625
                                                <div><b><a href="oaf-person-0_3_xsd.html#person_anchor" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.3.xsd')">person/anchor</a></b></div>
626
                                                <div><b><a href="oaf-person-0_3_xsd.html#person_children" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.3.xsd')">person/children</a></b></div>
627
                                                <div><b><a href="oaf-person-0_3_xsd.html#person_collectedfrom" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.3.xsd')">person/collectedfrom</a></b></div>
628
                                                <div><b><a href="oaf-person-0_3_xsd.html#person_datainfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.3.xsd')">person/datainfo</a></b></div>
629
                                                <div><b><a href="oaf-person-0_3_xsd.html#person_email" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.3.xsd')">person/email</a></b></div>
630
                                                <div><b><a href="oaf-person-0_3_xsd.html#person_fax" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.3.xsd')">person/fax</a></b></div>
631
                                                <div><b><a href="oaf-person-0_3_xsd.html#person_firstname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.3.xsd')">person/firstname</a></b></div>
632
                                                <div><b><a href="oaf-person-0_3_xsd.html#person_fullname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.3.xsd')">person/fullname</a></b></div>
633
                                                <div><b><a href="oaf-person-0_3_xsd.html#person_nationality" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.3.xsd')">person/nationality</a></b></div>
634
                                                <div><b><a href="oaf-person-0_3_xsd.html#person_originalId" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.3.xsd')">person/originalId</a></b></div>
635
                                                <div><b><a href="oaf-person-0_3_xsd.html#person_phone" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.3.xsd')">person/phone</a></b></div>
636
                                                <div><b><a href="oaf-person-0_3_xsd.html#person_pid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.3.xsd')">person/pid</a></b></div>
637
                                                <div><b><a href="oaf-person-0_3_xsd.html#person_rels" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.3.xsd')">person/rels</a></b></div>
638
                                                <div><b><a href="oaf-person-0_3_xsd.html#person_secondnames" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.3.xsd')">person/secondnames</a></b></div>
639
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_acronym" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/acronym</a></b></div>
640
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_callidentifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/callidentifier</a></b></div>
641
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_children" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/children</a></b></div>
642
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_code" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/code</a></b></div>
643
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_collectedfrom" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/collectedfrom</a></b></div>
644
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_contracttype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/contracttype</a></b></div>
645
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_datainfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/datainfo</a></b></div>
646
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_duration" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/duration</a></b></div>
647
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_ecarticle29_3" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/ecarticle29_3</a></b></div>
648
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_ecsc39" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/ecsc39</a></b></div>
649
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_enddate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/enddate</a></b></div>
650
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_fundingtree" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/fundingtree</a></b></div>
651
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_keywords" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/keywords</a></b></div>
652
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_oamandatepublications" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/oamandatepublications</a></b></div>
653
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_originalId" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/originalId</a></b></div>
654
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_pid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/pid</a></b></div>
655
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_rels" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/rels</a></b></div>
656
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_startdate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/startdate</a></b></div>
657
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_subjects" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/subjects</a></b></div>
658
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_title" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/title</a></b></div>
659
                                                <div><b><a href="oaf-project-0_3_xsd.html#project_websiteurl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.3.xsd')">project/websiteurl</a></b></div>
660
                                                <div><b><a href="oaf-common-0_3_xsd.html#relDataSourceGroup_datasourcetype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relDataSourceGroup/datasourcetype</a></b></div>
661
                                                <div><b><a href="oaf-common-0_3_xsd.html#relDataSourceGroup_datasourcetypeui" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relDataSourceGroup/datasourcetypeui</a></b></div>
662
                                                <div><b><a href="oaf-common-0_3_xsd.html#relDataSourceGroup_officialname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relDataSourceGroup/officialname</a></b></div>
663
                                                <div><b><a href="oaf-common-0_3_xsd.html#relOrganizationGroup_country" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relOrganizationGroup/country</a></b></div>
664
                                                <div><b><a href="oaf-common-0_3_xsd.html#relOrganizationGroup_legalname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relOrganizationGroup/legalname</a></b></div>
665
                                                <div><b><a href="oaf-common-0_3_xsd.html#relOrganizationGroup_legalshortname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relOrganizationGroup/legalshortname</a></b></div>
666
                                                <div><b><a href="oaf-common-0_3_xsd.html#relPersonGroup_email" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relPersonGroup/email</a></b></div>
667
                                                <div><b><a href="oaf-common-0_3_xsd.html#relPersonGroup_fax" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relPersonGroup/fax</a></b></div>
668
                                                <div><b><a href="oaf-common-0_3_xsd.html#relPersonGroup_fullname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relPersonGroup/fullname</a></b></div>
669
                                                <div><b><a href="oaf-common-0_3_xsd.html#relPersonGroup_phone" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relPersonGroup/phone</a></b></div>
670
                                                <div><b><a href="oaf-common-0_3_xsd.html#relPersonGroup_ranking" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relPersonGroup/ranking</a></b></div>
671
                                                <div><b><a href="oaf-common-0_3_xsd.html#relProjectGroup_acronym" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relProjectGroup/acronym</a></b></div>
672
                                                <div><b><a href="oaf-common-0_3_xsd.html#relProjectGroup_code" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relProjectGroup/code</a></b></div>
673
                                                <div><b><a href="oaf-common-0_3_xsd.html#relResultGroup_dateofacceptance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relResultGroup/dateofacceptance</a></b></div>
674
                                                <div><b><a href="oaf-common-0_3_xsd.html#relResultGroup_publisher" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relResultGroup/publisher</a></b></div>
675
                                                <div><b><a href="oaf-common-0_3_xsd.html#relResultGroup_resulttype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relResultGroup/resulttype</a></b></div>
676
                                                <div><b><a href="oaf-common-0_3_xsd.html#relResultGroup_similarity" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relResultGroup/similarity</a></b></div>
677
                                                <div><b><a href="oaf-common-0_3_xsd.html#relResultGroup_type" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relResultGroup/type</a></b></div>
678
                                                <div><b><a href="oaf-common-0_3_xsd.html#relType_title" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relType/title</a></b></div>
679
                                                <div><b><a href="oaf-common-0_3_xsd.html#relType_to" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relType/to</a></b></div>
680
                                                <div><b><a href="oaf-common-0_3_xsd.html#relType_websiteurl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relType/websiteurl</a></b></div>
681
                                                <div><b><a href="oaf-common-0_3_xsd.html#relsType_rel" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relsType/rel</a></b></div>
682
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_bestlicense" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/bestlicense</a></b></div>
683
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_children" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/children</a></b></div>
684
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_collectedfrom" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/collectedfrom</a></b></div>
685
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_context" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/context</a></b></div>
686
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_country" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/country</a></b></div>
687
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_datainfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/datainfo</a></b></div>
688
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_dateofacceptance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/dateofacceptance</a></b></div>
689
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_description" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/description</a></b></div>
690
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_device" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/device</a></b></div>
691
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_embargoenddate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/embargoenddate</a></b></div>
692
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_format" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/format</a></b></div>
693
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_fulltext" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/fulltext</a></b></div>
694
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_journal" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/journal</a></b></div>
695
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_language" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/language</a></b></div>
696
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_lastmetadataupdate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/lastmetadataupdate</a></b></div>
697
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_metadataversionnumber" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/metadataversionnumber</a></b></div>
698
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_originalId" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/originalId</a></b></div>
699
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_pid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/pid</a></b></div>
700
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_publisher" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/publisher</a></b></div>
701
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_relevantdate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/relevantdate</a></b></div>
702
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_rels" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/rels</a></b></div>
703
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_resourcetype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/resourcetype</a></b></div>
704
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_resulttype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/resulttype</a></b></div>
705
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_size" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/size</a></b></div>
706
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_source" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/source</a></b></div>
707
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_storagedate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/storagedate</a></b></div>
708
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_subject" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/subject</a></b></div>
709
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_title" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/title</a></b></div>
710
                                                <div><b><a href="oaf-result-0_3_xsd.html#result_version" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">result/version</a></b></div>
711
                                                <div><b><a href="oaf-result-0_3_xsd.html#resultChildrenType_externalreference" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">resultChildrenType/externalreference</a></b></div>
712
                                                <div><b><a href="oaf-result-0_3_xsd.html#resultChildrenType_instance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">resultChildrenType/instance</a></b></div>
713
                                                <div><b><a href="oaf-result-0_3_xsd.html#resultChildrenType_result" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">resultChildrenType/result</a></b></div>
714
                                                <div><b><a href="oaf-result-0_3_xsd.html#webresourceType_url" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">webresourceType/url</a></b></div>
715
                                             </div>
716
                                          </td>
717
                                       </tr>
718
                                    </tbody>
719
                                 </table>
720
                              </td>
721
                              <td class="rt_lineRight"></td>
722
                           </tr>
723
                           <tr>
724
                              <td class="rt_cornerBottomLeft"></td>
725
                              <td class="rt_lineBottom"></td>
726
                              <td class="rt_cornerBottomRight"></td>
727
                           </tr>
728
                        </table>
729
                     </div>
730
                     <div class="horizontalLayout">
731
                        <table class="rt">
732
                           <tr>
733
                              <td class="rt_cornerTopLeft"></td>
734
                              <td class="rt_lineTop"></td>
735
                              <td class="rt_cornerTopRight"></td>
736
                           </tr>
737
                           <tr>
738
                              <td class="rt_lineLeft"></td>
739
                              <td class="rt_content">
740
                                 <table class="componentGroup">
741
                                    <tbody>
742
                                       <tr>
743
                                          <td class="componentGroup"><input id="button_boxIdNamespace2Attribute" type="image" value="-" src="img/btM.gif" onclick="switchState('boxIdNamespace2Attribute');" class="control" /></td>
744
                                          <td class="componentGroup">
745
                                             <div class="componentGroupTitle">Attributes</div>
746
                                          </td>
747
                                       </tr>
748
                                       <tr>
749
                                          <td class="componentGroup"></td>
750
                                          <td class="componentGroup">
751
                                             <div id="boxIdNamespace2Attribute" class="componentGroup" style="display:block">
752
                                                <div><b><a href="oaf-result-0_3_xsd.html#categoryType_claim" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">categoryType/@claim</a></b></div>
753
                                                <div><b><a href="oaf-org-0_3_xsd.html#childrenOrg_childrenOrg_organization_objidentifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.3.xsd')">childrenOrg/organization/@objidentifier</a></b></div>
754
                                                <div><b><a href="oaf-result-0_3_xsd.html#childrenResult_objidentifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">childrenResult/@objidentifier</a></b></div>
755
                                                <div><b><a href="oaf-common-0_3_xsd.html#classSchemeAttrGroup_classid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">classSchemeAttrGroup/@classid</a></b></div>
756
                                                <div><b><a href="oaf-common-0_3_xsd.html#classSchemeAttrGroup_classname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">classSchemeAttrGroup/@classname</a></b></div>
757
                                                <div><b><a href="oaf-common-0_3_xsd.html#classSchemeAttrGroup_schemeid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">classSchemeAttrGroup/@schemeid</a></b></div>
758
                                                <div><b><a href="oaf-common-0_3_xsd.html#classSchemeAttrGroup_schemename" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">classSchemeAttrGroup/@schemename</a></b></div>
759
                                                <div><b><a href="oaf-result-0_3_xsd.html#conceptType_claim" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">conceptType/@claim</a></b></div>
760
                                                <div><b><a href="oaf-result-0_3_xsd.html#contextType_type" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">contextType/@type</a></b></div>
761
                                                <div><b><a href="oaf-common-0_3_xsd.html#extraInfoType_name" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">extraInfoType/@name</a></b></div>
762
                                                <div><b><a href="oaf-common-0_3_xsd.html#extraInfoType_provenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">extraInfoType/@provenance</a></b></div>
763
                                                <div><b><a href="oaf-common-0_3_xsd.html#extraInfoType_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">extraInfoType/@trust</a></b></div>
764
                                                <div><b><a href="oaf-common-0_3_xsd.html#extraInfoType_typology" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">extraInfoType/@typology</a></b></div>
765
                                                <div><b><a href="oaf-common-0_3_xsd.html#funderFlatType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">funderFlatType/@id</a></b></div>
766
                                                <div><b><a href="oaf-common-0_3_xsd.html#funderFlatType_jurisdiction" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">funderFlatType/@jurisdiction</a></b></div>
767
                                                <div><b><a href="oaf-common-0_3_xsd.html#funderFlatType_name" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">funderFlatType/@name</a></b></div>
768
                                                <div><b><a href="oaf-common-0_3_xsd.html#funderFlatType_shortname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">funderFlatType/@shortname</a></b></div>
769
                                                <div><b><a href="oaf-result-0_3_xsd.html#instanceType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">instanceType/@id</a></b></div>
770
                                                <div><b><a href="oaf-result-0_3_xsd.html#journalType_eissn" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">journalType/@eissn</a></b></div>
771
                                                <div><b><a href="oaf-result-0_3_xsd.html#journalType_issn" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">journalType/@issn</a></b></div>
772
                                                <div><b><a href="oaf-result-0_3_xsd.html#journalType_lissn" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.3.xsd')">journalType/@lissn</a></b></div>
773
                                                <div><b><a href="oaf-common-0_3_xsd.html#labeledIdElement_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">labeledIdElement/@id</a></b></div>
774
                                                <div><b><a href="oaf-common-0_3_xsd.html#labeledIdElement_label" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">labeledIdElement/@label</a></b></div>
775
                                                <div><b><a href="oaf-common-0_3_xsd.html#namedFundingLevel_name" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">namedFundingLevel/@name</a></b></div>
776
                                                <div><b><a href="oaf-common-0_3_xsd.html#namedIdElement_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">namedIdElement/@id</a></b></div>
777
                                                <div><b><a href="oaf-common-0_3_xsd.html#namedIdElement_name" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">namedIdElement/@name</a></b></div>
778
                                                <div><b><a href="oaf-common-0_3_xsd.html#optionalClassSchemeAttrGroup_classid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">optionalClassSchemeAttrGroup/@classid</a></b></div>
779
                                                <div><b><a href="oaf-common-0_3_xsd.html#optionalClassSchemeAttrGroup_classname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">optionalClassSchemeAttrGroup/@classname</a></b></div>
780
                                                <div><b><a href="oaf-common-0_3_xsd.html#optionalClassSchemeAttrGroup_schemeid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">optionalClassSchemeAttrGroup/@schemeid</a></b></div>
781
                                                <div><b><a href="oaf-common-0_3_xsd.html#optionalClassSchemeAttrGroup_schemename" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">optionalClassSchemeAttrGroup/@schemename</a></b></div>
782
                                                <div><b><a href="oaf-common-0_3_xsd.html#optionalInferenceAttrGroup_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">optionalInferenceAttrGroup/@inferenceprovenance</a></b></div>
783
                                                <div><b><a href="oaf-common-0_3_xsd.html#optionalInferenceAttrGroup_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">optionalInferenceAttrGroup/@inferred</a></b></div>
784
                                                <div><b><a href="oaf-common-0_3_xsd.html#optionalInferenceAttrGroup_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">optionalInferenceAttrGroup/@trust</a></b></div>
785
                                                <div><b><a href="oaf-common-0_3_xsd.html#relToType_class" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relToType/@class</a></b></div>
786
                                                <div><b><a href="oaf-common-0_3_xsd.html#relToType_scheme" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relToType/@scheme</a></b></div>
787
                                                <div><b><a href="oaf-common-0_3_xsd.html#relToType_type" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relToType/@type</a></b></div>
788
                                                <div><b><a href="oaf-common-0_3_xsd.html#relType_provenanceaction" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.3.xsd')">relType/@provenanceaction</a></b></div>
789
                                             </div>
790
                                          </td>
791
                                       </tr>
792
                                    </tbody>
793
                                 </table>
794
                              </td>
795
                              <td class="rt_lineRight"></td>
796
                           </tr>
797
                           <tr>
798
                              <td class="rt_cornerBottomLeft"></td>
799
                              <td class="rt_lineBottom"></td>
800
                              <td class="rt_cornerBottomRight"></td>
801
                           </tr>
802
                        </table>
803
                     </div>
804
                     <div style="clear:left"></div>
805
                  </div>
806
               </div>
807
            </div>
808
         </div>
809
      </div>
810
      <div class="footer">
811
         <hr />
812
         <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.
813
         </div>
814
      </div>
815
   </body>
816
</html>
(5-5/14)