Project

General

Profile

1
<!DOCTYPE html
2
  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
<html xmlns="http://www.w3.org/1999/xhtml">
4
   <head>
5
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6
      <title>Schema documentation for </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">Namespace</option>
249
                     <option value="toc_group_by_location" selected="selected">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_location" style="display:block">
253
            <div>
254
               <div class="level2">
255
                  <p><input id="button_gr_oaf-0.3.xsd" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-0.3.xsd');" class="control" /><span class="indexGroupTitle">oaf-0.3.xsd</span></p>
256
                  <div id="gr_oaf-0.3.xsd" 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_gr_oaf-0.3.xsdElement" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-0.3.xsdElement');" 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="gr_oaf-0.3.xsdElement" class="componentGroup" style="display:block">
279
                                                <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>
280
                                                <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>
281
                                             </div>
282
                                          </td>
283
                                       </tr>
284
                                    </tbody>
285
                                 </table>
286
                              </td>
287
                              <td class="rt_lineRight"></td>
288
                           </tr>
289
                           <tr>
290
                              <td class="rt_cornerBottomLeft"></td>
291
                              <td class="rt_lineBottom"></td>
292
                              <td class="rt_cornerBottomRight"></td>
293
                           </tr>
294
                        </table>
295
                     </div>
296
                     <div style="clear:left"></div>
297
                  </div>
298
               </div>
299
               <div class="level2">
300
                  <p><input id="button_gr_oaf-result-0.3.xsd" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-result-0.3.xsd');" class="control" /><span class="indexGroupTitle">oaf-result-0.3.xsd</span></p>
301
                  <div id="gr_oaf-result-0.3.xsd" style="display:block">
302
                     <div class="horizontalLayout">
303
                        <table class="rt">
304
                           <tr>
305
                              <td class="rt_cornerTopLeft"></td>
306
                              <td class="rt_lineTop"></td>
307
                              <td class="rt_cornerTopRight"></td>
308
                           </tr>
309
                           <tr>
310
                              <td class="rt_lineLeft"></td>
311
                              <td class="rt_content">
312
                                 <table class="componentGroup">
313
                                    <tbody>
314
                                       <tr>
315
                                          <td class="componentGroup"><input id="button_gr_oaf-result-0.3.xsdElement" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-result-0.3.xsdElement');" class="control" /></td>
316
                                          <td class="componentGroup">
317
                                             <div class="componentGroupTitle">Elements</div>
318
                                          </td>
319
                                       </tr>
320
                                       <tr>
321
                                          <td class="componentGroup"></td>
322
                                          <td class="componentGroup">
323
                                             <div id="gr_oaf-result-0.3.xsdElement" class="componentGroup" style="display:block">
324
                                                <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>
325
                                                <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>
326
                                                <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>
327
                                                <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>
328
                                                <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>
329
                                                <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>
330
                                                <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>
331
                                                <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>
332
                                                <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>
333
                                                <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>
334
                                                <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>
335
                                                <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>
336
                                                <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>
337
                                                <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>
338
                                                <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>
339
                                                <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>
340
                                                <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>
341
                                                <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>
342
                                                <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>
343
                                                <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>
344
                                                <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>
345
                                                <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>
346
                                                <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>
347
                                                <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>
348
                                                <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>
349
                                                <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>
350
                                                <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>
351
                                                <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>
352
                                                <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>
353
                                                <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>
354
                                                <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>
355
                                                <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>
356
                                                <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>
357
                                                <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>
358
                                                <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>
359
                                                <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>
360
                                                <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>
361
                                                <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>
362
                                                <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>
363
                                                <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>
364
                                                <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>
365
                                                <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>
366
                                                <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>
367
                                                <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>
368
                                                <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>
369
                                             </div>
370
                                          </td>
371
                                       </tr>
372
                                    </tbody>
373
                                 </table>
374
                              </td>
375
                              <td class="rt_lineRight"></td>
376
                           </tr>
377
                           <tr>
378
                              <td class="rt_cornerBottomLeft"></td>
379
                              <td class="rt_lineBottom"></td>
380
                              <td class="rt_cornerBottomRight"></td>
381
                           </tr>
382
                        </table>
383
                     </div>
384
                     <div class="horizontalLayout">
385
                        <table class="rt">
386
                           <tr>
387
                              <td class="rt_cornerTopLeft"></td>
388
                              <td class="rt_lineTop"></td>
389
                              <td class="rt_cornerTopRight"></td>
390
                           </tr>
391
                           <tr>
392
                              <td class="rt_lineLeft"></td>
393
                              <td class="rt_content">
394
                                 <table class="componentGroup">
395
                                    <tbody>
396
                                       <tr>
397
                                          <td class="componentGroup"><input id="button_gr_oaf-result-0.3.xsdComplex_Type" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-result-0.3.xsdComplex_Type');" class="control" /></td>
398
                                          <td class="componentGroup">
399
                                             <div class="componentGroupTitle">Complex Types</div>
400
                                          </td>
401
                                       </tr>
402
                                       <tr>
403
                                          <td class="componentGroup"></td>
404
                                          <td class="componentGroup">
405
                                             <div id="gr_oaf-result-0.3.xsdComplex_Type" class="componentGroup" style="display:block">
406
                                                <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>
407
                                                <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>
408
                                                <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>
409
                                                <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>
410
                                                <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>
411
                                                <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>
412
                                                <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>
413
                                                <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>
414
                                             </div>
415
                                          </td>
416
                                       </tr>
417
                                    </tbody>
418
                                 </table>
419
                              </td>
420
                              <td class="rt_lineRight"></td>
421
                           </tr>
422
                           <tr>
423
                              <td class="rt_cornerBottomLeft"></td>
424
                              <td class="rt_lineBottom"></td>
425
                              <td class="rt_cornerBottomRight"></td>
426
                           </tr>
427
                        </table>
428
                     </div>
429
                     <div class="horizontalLayout">
430
                        <table class="rt">
431
                           <tr>
432
                              <td class="rt_cornerTopLeft"></td>
433
                              <td class="rt_lineTop"></td>
434
                              <td class="rt_cornerTopRight"></td>
435
                           </tr>
436
                           <tr>
437
                              <td class="rt_lineLeft"></td>
438
                              <td class="rt_content">
439
                                 <table class="componentGroup">
440
                                    <tbody>
441
                                       <tr>
442
                                          <td class="componentGroup"><input id="button_gr_oaf-result-0.3.xsdAttribute" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-result-0.3.xsdAttribute');" class="control" /></td>
443
                                          <td class="componentGroup">
444
                                             <div class="componentGroupTitle">Attributes</div>
445
                                          </td>
446
                                       </tr>
447
                                       <tr>
448
                                          <td class="componentGroup"></td>
449
                                          <td class="componentGroup">
450
                                             <div id="gr_oaf-result-0.3.xsdAttribute" class="componentGroup" style="display:block">
451
                                                <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>
452
                                                <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>
453
                                                <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>
454
                                                <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>
455
                                                <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>
456
                                                <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>
457
                                                <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>
458
                                                <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>
459
                                             </div>
460
                                          </td>
461
                                       </tr>
462
                                    </tbody>
463
                                 </table>
464
                              </td>
465
                              <td class="rt_lineRight"></td>
466
                           </tr>
467
                           <tr>
468
                              <td class="rt_cornerBottomLeft"></td>
469
                              <td class="rt_lineBottom"></td>
470
                              <td class="rt_cornerBottomRight"></td>
471
                           </tr>
472
                        </table>
473
                     </div>
474
                     <div style="clear:left"></div>
475
                  </div>
476
               </div>
477
               <div class="level2">
478
                  <p><input id="button_gr_oaf-common-0.3.xsd" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-common-0.3.xsd');" class="control" /><span class="indexGroupTitle">oaf-common-0.3.xsd</span></p>
479
                  <div id="gr_oaf-common-0.3.xsd" style="display:block">
480
                     <div class="horizontalLayout">
481
                        <table class="rt">
482
                           <tr>
483
                              <td class="rt_cornerTopLeft"></td>
484
                              <td class="rt_lineTop"></td>
485
                              <td class="rt_cornerTopRight"></td>
486
                           </tr>
487
                           <tr>
488
                              <td class="rt_lineLeft"></td>
489
                              <td class="rt_content">
490
                                 <table class="componentGroup">
491
                                    <tbody>
492
                                       <tr>
493
                                          <td class="componentGroup"><input id="button_gr_oaf-common-0.3.xsdElement" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-common-0.3.xsdElement');" class="control" /></td>
494
                                          <td class="componentGroup">
495
                                             <div class="componentGroupTitle">Elements</div>
496
                                          </td>
497
                                       </tr>
498
                                       <tr>
499
                                          <td class="componentGroup"></td>
500
                                          <td class="componentGroup">
501
                                             <div id="gr_oaf-common-0.3.xsdElement" class="componentGroup" style="display:block">
502
                                                <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>
503
                                                <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>
504
                                                <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>
505
                                                <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>
506
                                                <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>
507
                                                <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>
508
                                                <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>
509
                                                <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>
510
                                                <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>
511
                                                <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>
512
                                                <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>
513
                                                <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>
514
                                                <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>
515
                                                <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>
516
                                                <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>
517
                                                <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>
518
                                                <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>
519
                                                <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>
520
                                                <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>
521
                                                <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>
522
                                                <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>
523
                                                <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>
524
                                                <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>
525
                                                <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>
526
                                                <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>
527
                                                <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>
528
                                                <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>
529
                                                <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>
530
                                                <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>
531
                                                <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>
532
                                                <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>
533
                                                <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>
534
                                                <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>
535
                                                <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>
536
                                                <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>
537
                                                <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>
538
                                                <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>
539
                                             </div>
540
                                          </td>
541
                                       </tr>
542
                                    </tbody>
543
                                 </table>
544
                              </td>
545
                              <td class="rt_lineRight"></td>
546
                           </tr>
547
                           <tr>
548
                              <td class="rt_cornerBottomLeft"></td>
549
                              <td class="rt_lineBottom"></td>
550
                              <td class="rt_cornerBottomRight"></td>
551
                           </tr>
552
                        </table>
553
                     </div>
554
                     <div class="horizontalLayout">
555
                        <table class="rt">
556
                           <tr>
557
                              <td class="rt_cornerTopLeft"></td>
558
                              <td class="rt_lineTop"></td>
559
                              <td class="rt_cornerTopRight"></td>
560
                           </tr>
561
                           <tr>
562
                              <td class="rt_lineLeft"></td>
563
                              <td class="rt_content">
564
                                 <table class="componentGroup">
565
                                    <tbody>
566
                                       <tr>
567
                                          <td class="componentGroup"><input id="button_gr_oaf-common-0.3.xsdComplex_Type" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-common-0.3.xsdComplex_Type');" class="control" /></td>
568
                                          <td class="componentGroup">
569
                                             <div class="componentGroupTitle">Complex Types</div>
570
                                          </td>
571
                                       </tr>
572
                                       <tr>
573
                                          <td class="componentGroup"></td>
574
                                          <td class="componentGroup">
575
                                             <div id="gr_oaf-common-0.3.xsdComplex_Type" class="componentGroup" style="display:block">
576
                                                <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>
577
                                                <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>
578
                                                <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>
579
                                                <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>
580
                                                <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>
581
                                                <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>
582
                                                <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>
583
                                                <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>
584
                                                <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>
585
                                                <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>
586
                                                <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>
587
                                                <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>
588
                                                <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>
589
                                                <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>
590
                                                <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>
591
                                             </div>
592
                                          </td>
593
                                       </tr>
594
                                    </tbody>
595
                                 </table>
596
                              </td>
597
                              <td class="rt_lineRight"></td>
598
                           </tr>
599
                           <tr>
600
                              <td class="rt_cornerBottomLeft"></td>
601
                              <td class="rt_lineBottom"></td>
602
                              <td class="rt_cornerBottomRight"></td>
603
                           </tr>
604
                        </table>
605
                     </div>
606
                     <div class="horizontalLayout">
607
                        <table class="rt">
608
                           <tr>
609
                              <td class="rt_cornerTopLeft"></td>
610
                              <td class="rt_lineTop"></td>
611
                              <td class="rt_cornerTopRight"></td>
612
                           </tr>
613
                           <tr>
614
                              <td class="rt_lineLeft"></td>
615
                              <td class="rt_content">
616
                                 <table class="componentGroup">
617
                                    <tbody>
618
                                       <tr>
619
                                          <td class="componentGroup"><input id="button_gr_oaf-common-0.3.xsdSimple_Type" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-common-0.3.xsdSimple_Type');" class="control" /></td>
620
                                          <td class="componentGroup">
621
                                             <div class="componentGroupTitle">Simple Types</div>
622
                                          </td>
623
                                       </tr>
624
                                       <tr>
625
                                          <td class="componentGroup"></td>
626
                                          <td class="componentGroup">
627
                                             <div id="gr_oaf-common-0.3.xsdSimple_Type" class="componentGroup" style="display:block">
628
                                                <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>
629
                                                <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>
630
                                                <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>
631
                                             </div>
632
                                          </td>
633
                                       </tr>
634
                                    </tbody>
635
                                 </table>
636
                              </td>
637
                              <td class="rt_lineRight"></td>
638
                           </tr>
639
                           <tr>
640
                              <td class="rt_cornerBottomLeft"></td>
641
                              <td class="rt_lineBottom"></td>
642
                              <td class="rt_cornerBottomRight"></td>
643
                           </tr>
644
                        </table>
645
                     </div>
646
                     <div class="horizontalLayout">
647
                        <table class="rt">
648
                           <tr>
649
                              <td class="rt_cornerTopLeft"></td>
650
                              <td class="rt_lineTop"></td>
651
                              <td class="rt_cornerTopRight"></td>
652
                           </tr>
653
                           <tr>
654
                              <td class="rt_lineLeft"></td>
655
                              <td class="rt_content">
656
                                 <table class="componentGroup">
657
                                    <tbody>
658
                                       <tr>
659
                                          <td class="componentGroup"><input id="button_gr_oaf-common-0.3.xsdAttribute" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-common-0.3.xsdAttribute');" class="control" /></td>
660
                                          <td class="componentGroup">
661
                                             <div class="componentGroupTitle">Attributes</div>
662
                                          </td>
663
                                       </tr>
664
                                       <tr>
665
                                          <td class="componentGroup"></td>
666
                                          <td class="componentGroup">
667
                                             <div id="gr_oaf-common-0.3.xsdAttribute" class="componentGroup" style="display:block">
668
                                                <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>
669
                                                <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>
670
                                                <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>
671
                                                <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>
672
                                                <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>
673
                                                <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>
674
                                                <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>
675
                                                <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>
676
                                                <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>
677
                                                <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>
678
                                                <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>
679
                                                <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>
680
                                                <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>
681
                                                <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>
682
                                                <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>
683
                                                <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>
684
                                                <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>
685
                                                <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>
686
                                                <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>
687
                                                <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>
688
                                                <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>
689
                                                <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>
690
                                                <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>
691
                                                <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>
692
                                                <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>
693
                                                <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>
694
                                                <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>
695
                                                <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>
696
                                             </div>
697
                                          </td>
698
                                       </tr>
699
                                    </tbody>
700
                                 </table>
701
                              </td>
702
                              <td class="rt_lineRight"></td>
703
                           </tr>
704
                           <tr>
705
                              <td class="rt_cornerBottomLeft"></td>
706
                              <td class="rt_lineBottom"></td>
707
                              <td class="rt_cornerBottomRight"></td>
708
                           </tr>
709
                        </table>
710
                     </div>
711
                     <div class="horizontalLayout">
712
                        <table class="rt">
713
                           <tr>
714
                              <td class="rt_cornerTopLeft"></td>
715
                              <td class="rt_lineTop"></td>
716
                              <td class="rt_cornerTopRight"></td>
717
                           </tr>
718
                           <tr>
719
                              <td class="rt_lineLeft"></td>
720
                              <td class="rt_content">
721
                                 <table class="componentGroup">
722
                                    <tbody>
723
                                       <tr>
724
                                          <td class="componentGroup"><input id="button_gr_oaf-common-0.3.xsdElement_Group" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-common-0.3.xsdElement_Group');" class="control" /></td>
725
                                          <td class="componentGroup">
726
                                             <div class="componentGroupTitle">Element Groups</div>
727
                                          </td>
728
                                       </tr>
729
                                       <tr>
730
                                          <td class="componentGroup"></td>
731
                                          <td class="componentGroup">
732
                                             <div id="gr_oaf-common-0.3.xsdElement_Group" class="componentGroup" style="display:block">
733
                                                <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>
734
                                                <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>
735
                                                <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>
736
                                                <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>
737
                                                <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>
738
                                                <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>
739
                                             </div>
740
                                          </td>
741
                                       </tr>
742
                                    </tbody>
743
                                 </table>
744
                              </td>
745
                              <td class="rt_lineRight"></td>
746
                           </tr>
747
                           <tr>
748
                              <td class="rt_cornerBottomLeft"></td>
749
                              <td class="rt_lineBottom"></td>
750
                              <td class="rt_cornerBottomRight"></td>
751
                           </tr>
752
                        </table>
753
                     </div>
754
                     <div class="horizontalLayout">
755
                        <table class="rt">
756
                           <tr>
757
                              <td class="rt_cornerTopLeft"></td>
758
                              <td class="rt_lineTop"></td>
759
                              <td class="rt_cornerTopRight"></td>
760
                           </tr>
761
                           <tr>
762
                              <td class="rt_lineLeft"></td>
763
                              <td class="rt_content">
764
                                 <table class="componentGroup">
765
                                    <tbody>
766
                                       <tr>
767
                                          <td class="componentGroup"><input id="button_gr_oaf-common-0.3.xsdAttribute_Group" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-common-0.3.xsdAttribute_Group');" class="control" /></td>
768
                                          <td class="componentGroup">
769
                                             <div class="componentGroupTitle">Attribute Groups</div>
770
                                          </td>
771
                                       </tr>
772
                                       <tr>
773
                                          <td class="componentGroup"></td>
774
                                          <td class="componentGroup">
775
                                             <div id="gr_oaf-common-0.3.xsdAttribute_Group" class="componentGroup" style="display:block">
776
                                                <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>
777
                                                <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>
778
                                                <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>
779
                                             </div>
780
                                          </td>
781
                                       </tr>
782
                                    </tbody>
783
                                 </table>
784
                              </td>
785
                              <td class="rt_lineRight"></td>
786
                           </tr>
787
                           <tr>
788
                              <td class="rt_cornerBottomLeft"></td>
789
                              <td class="rt_lineBottom"></td>
790
                              <td class="rt_cornerBottomRight"></td>
791
                           </tr>
792
                        </table>
793
                     </div>
794
                     <div style="clear:left"></div>
795
                  </div>
796
               </div>
797
               <div class="level2">
798
                  <p><input id="button_gr_oaf-person-0.3.xsd" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-person-0.3.xsd');" class="control" /><span class="indexGroupTitle">oaf-person-0.3.xsd</span></p>
799
                  <div id="gr_oaf-person-0.3.xsd" style="display:block">
800
                     <div class="horizontalLayout">
801
                        <table class="rt">
802
                           <tr>
803
                              <td class="rt_cornerTopLeft"></td>
804
                              <td class="rt_lineTop"></td>
805
                              <td class="rt_cornerTopRight"></td>
806
                           </tr>
807
                           <tr>
808
                              <td class="rt_lineLeft"></td>
809
                              <td class="rt_content">
810
                                 <table class="componentGroup">
811
                                    <tbody>
812
                                       <tr>
813
                                          <td class="componentGroup"><input id="button_gr_oaf-person-0.3.xsdElement" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-person-0.3.xsdElement');" class="control" /></td>
814
                                          <td class="componentGroup">
815
                                             <div class="componentGroupTitle">Elements</div>
816
                                          </td>
817
                                       </tr>
818
                                       <tr>
819
                                          <td class="componentGroup"></td>
820
                                          <td class="componentGroup">
821
                                             <div id="gr_oaf-person-0.3.xsdElement" class="componentGroup" style="display:block">
822
                                                <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>
823
                                                <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>
824
                                                <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>
825
                                                <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>
826
                                                <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>
827
                                                <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>
828
                                                <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>
829
                                                <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>
830
                                                <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>
831
                                                <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>
832
                                                <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>
833
                                                <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>
834
                                                <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>
835
                                                <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>
836
                                                <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>
837
                                             </div>
838
                                          </td>
839
                                       </tr>
840
                                    </tbody>
841
                                 </table>
842
                              </td>
843
                              <td class="rt_lineRight"></td>
844
                           </tr>
845
                           <tr>
846
                              <td class="rt_cornerBottomLeft"></td>
847
                              <td class="rt_lineBottom"></td>
848
                              <td class="rt_cornerBottomRight"></td>
849
                           </tr>
850
                        </table>
851
                     </div>
852
                     <div style="clear:left"></div>
853
                  </div>
854
               </div>
855
               <div class="level2">
856
                  <p><input id="button_gr_oaf-org-0.3.xsd" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-org-0.3.xsd');" class="control" /><span class="indexGroupTitle">oaf-org-0.3.xsd</span></p>
857
                  <div id="gr_oaf-org-0.3.xsd" style="display:block">
858
                     <div class="horizontalLayout">
859
                        <table class="rt">
860
                           <tr>
861
                              <td class="rt_cornerTopLeft"></td>
862
                              <td class="rt_lineTop"></td>
863
                              <td class="rt_cornerTopRight"></td>
864
                           </tr>
865
                           <tr>
866
                              <td class="rt_lineLeft"></td>
867
                              <td class="rt_content">
868
                                 <table class="componentGroup">
869
                                    <tbody>
870
                                       <tr>
871
                                          <td class="componentGroup"><input id="button_gr_oaf-org-0.3.xsdElement" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-org-0.3.xsdElement');" class="control" /></td>
872
                                          <td class="componentGroup">
873
                                             <div class="componentGroupTitle">Elements</div>
874
                                          </td>
875
                                       </tr>
876
                                       <tr>
877
                                          <td class="componentGroup"></td>
878
                                          <td class="componentGroup">
879
                                             <div id="gr_oaf-org-0.3.xsdElement" class="componentGroup" style="display:block">
880
                                                <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>
881
                                                <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>
882
                                                <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>
883
                                                <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>
884
                                                <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>
885
                                                <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>
886
                                                <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>
887
                                                <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>
888
                                                <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>
889
                                                <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>
890
                                                <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>
891
                                                <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>
892
                                                <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>
893
                                                <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>
894
                                                <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>
895
                                                <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>
896
                                                <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>
897
                                                <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>
898
                                                <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>
899
                                                <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>
900
                                                <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>
901
                                                <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>
902
                                                <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>
903
                                                <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>
904
                                                <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>
905
                                                <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>
906
                                                <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>
907
                                             </div>
908
                                          </td>
909
                                       </tr>
910
                                    </tbody>
911
                                 </table>
912
                              </td>
913
                              <td class="rt_lineRight"></td>
914
                           </tr>
915
                           <tr>
916
                              <td class="rt_cornerBottomLeft"></td>
917
                              <td class="rt_lineBottom"></td>
918
                              <td class="rt_cornerBottomRight"></td>
919
                           </tr>
920
                        </table>
921
                     </div>
922
                     <div class="horizontalLayout">
923
                        <table class="rt">
924
                           <tr>
925
                              <td class="rt_cornerTopLeft"></td>
926
                              <td class="rt_lineTop"></td>
927
                              <td class="rt_cornerTopRight"></td>
928
                           </tr>
929
                           <tr>
930
                              <td class="rt_lineLeft"></td>
931
                              <td class="rt_content">
932
                                 <table class="componentGroup">
933
                                    <tbody>
934
                                       <tr>
935
                                          <td class="componentGroup"><input id="button_gr_oaf-org-0.3.xsdComplex_Type" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-org-0.3.xsdComplex_Type');" class="control" /></td>
936
                                          <td class="componentGroup">
937
                                             <div class="componentGroupTitle">Complex Types</div>
938
                                          </td>
939
                                       </tr>
940
                                       <tr>
941
                                          <td class="componentGroup"></td>
942
                                          <td class="componentGroup">
943
                                             <div id="gr_oaf-org-0.3.xsdComplex_Type" class="componentGroup" style="display:block">
944
                                                <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>
945
                                             </div>
946
                                          </td>
947
                                       </tr>
948
                                    </tbody>
949
                                 </table>
950
                              </td>
951
                              <td class="rt_lineRight"></td>
952
                           </tr>
953
                           <tr>
954
                              <td class="rt_cornerBottomLeft"></td>
955
                              <td class="rt_lineBottom"></td>
956
                              <td class="rt_cornerBottomRight"></td>
957
                           </tr>
958
                        </table>
959
                     </div>
960
                     <div class="horizontalLayout">
961
                        <table class="rt">
962
                           <tr>
963
                              <td class="rt_cornerTopLeft"></td>
964
                              <td class="rt_lineTop"></td>
965
                              <td class="rt_cornerTopRight"></td>
966
                           </tr>
967
                           <tr>
968
                              <td class="rt_lineLeft"></td>
969
                              <td class="rt_content">
970
                                 <table class="componentGroup">
971
                                    <tbody>
972
                                       <tr>
973
                                          <td class="componentGroup"><input id="button_gr_oaf-org-0.3.xsdAttribute" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-org-0.3.xsdAttribute');" class="control" /></td>
974
                                          <td class="componentGroup">
975
                                             <div class="componentGroupTitle">Attributes</div>
976
                                          </td>
977
                                       </tr>
978
                                       <tr>
979
                                          <td class="componentGroup"></td>
980
                                          <td class="componentGroup">
981
                                             <div id="gr_oaf-org-0.3.xsdAttribute" class="componentGroup" style="display:block">
982
                                                <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>
983
                                             </div>
984
                                          </td>
985
                                       </tr>
986
                                    </tbody>
987
                                 </table>
988
                              </td>
989
                              <td class="rt_lineRight"></td>
990
                           </tr>
991
                           <tr>
992
                              <td class="rt_cornerBottomLeft"></td>
993
                              <td class="rt_lineBottom"></td>
994
                              <td class="rt_cornerBottomRight"></td>
995
                           </tr>
996
                        </table>
997
                     </div>
998
                     <div style="clear:left"></div>
999
                  </div>
1000
               </div>
1001
               <div class="level2">
1002
                  <p><input id="button_gr_oaf-datasource-0.3.xsd" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-datasource-0.3.xsd');" class="control" /><span class="indexGroupTitle">oaf-datasource-0.3.xsd</span></p>
1003
                  <div id="gr_oaf-datasource-0.3.xsd" style="display:block">
1004
                     <div class="horizontalLayout">
1005
                        <table class="rt">
1006
                           <tr>
1007
                              <td class="rt_cornerTopLeft"></td>
1008
                              <td class="rt_lineTop"></td>
1009
                              <td class="rt_cornerTopRight"></td>
1010
                           </tr>
1011
                           <tr>
1012
                              <td class="rt_lineLeft"></td>
1013
                              <td class="rt_content">
1014
                                 <table class="componentGroup">
1015
                                    <tbody>
1016
                                       <tr>
1017
                                          <td class="componentGroup"><input id="button_gr_oaf-datasource-0.3.xsdElement" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-datasource-0.3.xsdElement');" class="control" /></td>
1018
                                          <td class="componentGroup">
1019
                                             <div class="componentGroupTitle">Elements</div>
1020
                                          </td>
1021
                                       </tr>
1022
                                       <tr>
1023
                                          <td class="componentGroup"></td>
1024
                                          <td class="componentGroup">
1025
                                             <div id="gr_oaf-datasource-0.3.xsdElement" class="componentGroup" style="display:block">
1026
                                                <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>
1027
                                                <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>
1028
                                                <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>
1029
                                                <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>
1030
                                                <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>
1031
                                                <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>
1032
                                                <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>
1033
                                                <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>
1034
                                                <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>
1035
                                                <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>
1036
                                                <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>
1037
                                                <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>
1038
                                                <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>
1039
                                                <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>
1040
                                                <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>
1041
                                                <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>
1042
                                                <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>
1043
                                                <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>
1044
                                                <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>
1045
                                                <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>
1046
                                                <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>
1047
                                                <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>
1048
                                                <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>
1049
                                                <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>
1050
                                                <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>
1051
                                                <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>
1052
                                                <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>
1053
                                                <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>
1054
                                                <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>
1055
                                                <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>
1056
                                                <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>
1057
                                                <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>
1058
                                                <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>
1059
                                                <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>
1060
                                                <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>
1061
                                                <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>
1062
                                                <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>
1063
                                                <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>
1064
                                                <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>
1065
                                                <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>
1066
                                                <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>
1067
                                                <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>
1068
                                             </div>
1069
                                          </td>
1070
                                       </tr>
1071
                                    </tbody>
1072
                                 </table>
1073
                              </td>
1074
                              <td class="rt_lineRight"></td>
1075
                           </tr>
1076
                           <tr>
1077
                              <td class="rt_cornerBottomLeft"></td>
1078
                              <td class="rt_lineBottom"></td>
1079
                              <td class="rt_cornerBottomRight"></td>
1080
                           </tr>
1081
                        </table>
1082
                     </div>
1083
                     <div style="clear:left"></div>
1084
                  </div>
1085
               </div>
1086
               <div class="level2">
1087
                  <p><input id="button_gr_oaf-project-0.3.xsd" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-project-0.3.xsd');" class="control" /><span class="indexGroupTitle">oaf-project-0.3.xsd</span></p>
1088
                  <div id="gr_oaf-project-0.3.xsd" style="display:block">
1089
                     <div class="horizontalLayout">
1090
                        <table class="rt">
1091
                           <tr>
1092
                              <td class="rt_cornerTopLeft"></td>
1093
                              <td class="rt_lineTop"></td>
1094
                              <td class="rt_cornerTopRight"></td>
1095
                           </tr>
1096
                           <tr>
1097
                              <td class="rt_lineLeft"></td>
1098
                              <td class="rt_content">
1099
                                 <table class="componentGroup">
1100
                                    <tbody>
1101
                                       <tr>
1102
                                          <td class="componentGroup"><input id="button_gr_oaf-project-0.3.xsdElement" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-project-0.3.xsdElement');" class="control" /></td>
1103
                                          <td class="componentGroup">
1104
                                             <div class="componentGroupTitle">Elements</div>
1105
                                          </td>
1106
                                       </tr>
1107
                                       <tr>
1108
                                          <td class="componentGroup"></td>
1109
                                          <td class="componentGroup">
1110
                                             <div id="gr_oaf-project-0.3.xsdElement" class="componentGroup" style="display:block">
1111
                                                <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>
1112
                                                <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>
1113
                                                <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>
1114
                                                <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>
1115
                                                <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>
1116
                                                <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>
1117
                                                <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>
1118
                                                <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>
1119
                                                <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>
1120
                                                <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>
1121
                                                <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>
1122
                                                <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>
1123
                                                <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>
1124
                                                <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>
1125
                                                <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>
1126
                                                <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>
1127
                                                <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>
1128
                                                <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>
1129
                                                <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>
1130
                                                <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>
1131
                                                <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>
1132
                                                <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>
1133
                                                <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>
1134
                                                <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>
1135
                                                <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>
1136
                                                <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>
1137
                                                <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>
1138
                                                <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>
1139
                                                <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>
1140
                                                <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>
1141
                                                <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>
1142
                                                <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>
1143
                                                <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>
1144
                                                <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>
1145
                                                <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>
1146
                                                <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>
1147
                                                <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>
1148
                                             </div>
1149
                                          </td>
1150
                                       </tr>
1151
                                    </tbody>
1152
                                 </table>
1153
                              </td>
1154
                              <td class="rt_lineRight"></td>
1155
                           </tr>
1156
                           <tr>
1157
                              <td class="rt_cornerBottomLeft"></td>
1158
                              <td class="rt_lineBottom"></td>
1159
                              <td class="rt_cornerBottomRight"></td>
1160
                           </tr>
1161
                        </table>
1162
                     </div>
1163
                     <div class="horizontalLayout">
1164
                        <table class="rt">
1165
                           <tr>
1166
                              <td class="rt_cornerTopLeft"></td>
1167
                              <td class="rt_lineTop"></td>
1168
                              <td class="rt_cornerTopRight"></td>
1169
                           </tr>
1170
                           <tr>
1171
                              <td class="rt_lineLeft"></td>
1172
                              <td class="rt_content">
1173
                                 <table class="componentGroup">
1174
                                    <tbody>
1175
                                       <tr>
1176
                                          <td class="componentGroup"><input id="button_gr_oaf-project-0.3.xsdComplex_Type" type="image" value="-" src="img/btM.gif" onclick="switchState('gr_oaf-project-0.3.xsdComplex_Type');" class="control" /></td>
1177
                                          <td class="componentGroup">
1178
                                             <div class="componentGroupTitle">Complex Types</div>
1179
                                          </td>
1180
                                       </tr>
1181
                                       <tr>
1182
                                          <td class="componentGroup"></td>
1183
                                          <td class="componentGroup">
1184
                                             <div id="gr_oaf-project-0.3.xsdComplex_Type" class="componentGroup" style="display:block">
1185
                                                <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>
1186
                                                <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>
1187
                                                <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>
1188
                                                <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>
1189
                                             </div>
1190
                                          </td>
1191
                                       </tr>
1192
                                    </tbody>
1193
                                 </table>
1194
                              </td>
1195
                              <td class="rt_lineRight"></td>
1196
                           </tr>
1197
                           <tr>
1198
                              <td class="rt_cornerBottomLeft"></td>
1199
                              <td class="rt_lineBottom"></td>
1200
                              <td class="rt_cornerBottomRight"></td>
1201
                           </tr>
1202
                        </table>
1203
                     </div>
1204
                     <div style="clear:left"></div>
1205
                  </div>
1206
               </div>
1207
            </div>
1208
         </div>
1209
      </div>
1210
      <div class="footer">
1211
         <hr />
1212
         <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.
1213
         </div>
1214
      </div><script type="text/javascript">
1215
         <!--
1216
                     // The namespace is the selected option in the TOC combo.
1217
                    
1218
                     // Floats the toolbar.
1219
                     var globalControls = getElementObject("global_controls"); 
1220
                     
1221
                     if(globalControls != null){
1222
	                     var browser=navigator.appName;
1223
						 var version = parseFloat(navigator.appVersion.split('MSIE')[1]);
1224
						 
1225
						 var IE6 = false;
1226
						 if ((browser=="Microsoft Internet Explorer") && (version < 7)){
1227
						 	IE6 = true;
1228
						 }
1229
	
1230
	                     //alert (IE6 + " |V| " + version);
1231
	                     
1232
	                     if(IE6){
1233
	                     	// On IE 6 the 'fixed' property is not supported. We must use javascript. 
1234
	                         globalControls.style.position='absolute';                         
1235
	                         // The global controls will do not exist in the TOC frame, when chunking.
1236
	                         findAndFloat("global_controls", 225, 30);    
1237
	                     } else {
1238
	                      	  globalControls.style.position='fixed';                     	
1239
	                     }
1240
	                     
1241
	                     globalControls.style.right='0';                       
1242
                     }
1243
                //--></script></body>
1244
</html>
(3-3/14)