Project

General

Profile

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

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

    
215
         /**
216
          * Finds an HTML element by its ID and makes it floatable over the normal content.
217
          *
218
          * @param x_displacement The difference in pixels to the right side of the window from 
219
          *           the left side of the element.
220
          * @param y_displacement The difference in pixels to the right side of the window from 
221
          *           the top of the element.          
222
          */
223
         function selectTOCGroupBy(id, isChunked, indexFileLocation, indexFileNamespace, indexFileComponent){
224

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

    
246
    --></script></head>
247
   <body>
248
      <h2><a id="INDEX">Table of Contents</a></h2>
249
      <p><a href="oaf-0.1.indexList.html">Components</a><span> | </span><a href="schHierarchy.html">Resource Hierarchy</a></p>
250
      <hr />
251
      <div class="toc">
252
         <form action="none">
253
            <div><span> Group by: <select id="selectTOC" onchange="selectTOCGroupBy(this.options[this.selectedIndex].value, true, 'oaf-0.1.indexList.html', 'oaf-0.1.indexListns.html', 'oaf-0.1.indexListcomp.html');">
254
                     <option value="toc_group_by_namespace">Namespace</option>
255
                     <option value="toc_group_by_location">Location</option>
256
                     <option value="toc_group_by_component_type" selected="selected">Component Type</option></select></span></div>
257
         </form>
258
         <div class="level1" id="toc_group_by_component_type" style="display:block">
259
            <div>
260
               <div class="horizontalLayout">
261
                  <table class="rt">
262
                     <tr>
263
                        <td class="rt_cornerTopLeft"></td>
264
                        <td class="rt_lineTop"></td>
265
                        <td class="rt_cornerTopRight"></td>
266
                     </tr>
267
                     <tr>
268
                        <td class="rt_lineLeft"></td>
269
                        <td class="rt_content">
270
                           <div class="componentGroupTitle">Elements
271
                              
272
                           </div>
273
                           <div id="Element" style="display:block">
274
                              <div><b><a href="oaf-result-0_1_xsd.html#categoryType_concept" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">categoryType/concept</a></b></div>
275
                              <div><b><a href="oaf-result-0_1_xsd.html#childrenResult_dateofacceptance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">childrenResult/dateofacceptance</a></b></div>
276
                              <div><b><a href="oaf-result-0_1_xsd.html#childrenResult_publisher" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">childrenResult/publisher</a></b></div>
277
                              <div><b><a href="oaf-result-0_1_xsd.html#childrenResult_resulttype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">childrenResult/resulttype</a></b></div>
278
                              <div><b><a href="oaf-result-0_1_xsd.html#childrenResult_title" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">childrenResult/title</a></b></div>
279
                              <div><b><a href="oaf-result-0_1_xsd.html#conceptType_concept" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">conceptType/concept</a></b></div>
280
                              <div><b><a href="oaf-result-0_1_xsd.html#contextType_category" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">contextType/category</a></b></div>
281
                              <div><b><a href="oaf-common-0_1_xsd.html#datainfoType_deletedbyinference" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">datainfoType/deletedbyinference</a></b></div>
282
                              <div><b><a href="oaf-common-0_1_xsd.html#datainfoType_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">datainfoType/inferenceprovenance</a></b></div>
283
                              <div><b><a href="oaf-common-0_1_xsd.html#datainfoType_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">datainfoType/inferred</a></b></div>
284
                              <div><b><a href="oaf-common-0_1_xsd.html#datainfoType_provenanceaction" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">datainfoType/provenanceaction</a></b></div>
285
                              <div><b><a href="oaf-common-0_1_xsd.html#datainfoType_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">datainfoType/trust</a></b></div>
286
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource</a></b></div>
287
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_accessinfopackage" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/accessinfopackage</a></b></div>
288
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_certificates" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/certificates</a></b></div>
289
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_children" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/children</a></b></div>
290
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_citationguidelineurl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/citationguidelineurl</a></b></div>
291
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_collectedfrom" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/collectedfrom</a></b></div>
292
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_contactemail" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/contactemail</a></b></div>
293
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_databaseaccessrestriction" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/databaseaccessrestriction</a></b></div>
294
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_databaseaccesstype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/databaseaccesstype</a></b></div>
295
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_datainfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/datainfo</a></b></div>
296
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_dataprovider" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/dataprovider</a></b></div>
297
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_datasourcetype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/datasourcetype</a></b></div>
298
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_datasourcetypeui" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/datasourcetypeui</a></b></div>
299
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_datauploadrestriction" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/datauploadrestriction</a></b></div>
300
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_datauploadtype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/datauploadtype</a></b></div>
301
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_dateofvalidation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/dateofvalidation</a></b></div>
302
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_description" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/description</a></b></div>
303
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_englishname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/englishname</a></b></div>
304
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_latitude" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/latitude</a></b></div>
305
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_logourl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/logourl</a></b></div>
306
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_longitude" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/longitude</a></b></div>
307
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_missionstatementurl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/missionstatementurl</a></b></div>
308
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_namespaceprefix" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/namespaceprefix</a></b></div>
309
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_odcontenttypes" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/odcontenttypes</a></b></div>
310
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_odlanguages" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/odlanguages</a></b></div>
311
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_odnumberofitems" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/odnumberofitems</a></b></div>
312
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_odnumberofitemsdate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/odnumberofitemsdate</a></b></div>
313
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_odpolicies" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/odpolicies</a></b></div>
314
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_officialname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/officialname</a></b></div>
315
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_openairecompatibility" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/openairecompatibility</a></b></div>
316
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_originalId" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/originalId</a></b></div>
317
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_pid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/pid</a></b></div>
318
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_pidsystems" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/pidsystems</a></b></div>
319
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_policies" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/policies</a></b></div>
320
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_qualitymanagementkind" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/qualitymanagementkind</a></b></div>
321
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_releaseenddate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/releaseenddate</a></b></div>
322
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_releasestartdate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/releasestartdate</a></b></div>
323
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_rels" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/rels</a></b></div>
324
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_serviceprovider" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/serviceprovider</a></b></div>
325
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_subjects" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/subjects</a></b></div>
326
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_versioning" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/versioning</a></b></div>
327
                              <div><b><a href="oaf-datasource-0_1_xsd.html#datasource_websiteurl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.1.xsd')">datasource/websiteurl</a></b></div>
328
                              <div><b><a href="oaf-0_1_xsd.html#entity" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-0.1.xsd')">entity</a></b></div>
329
                              <div><b><a href="oaf-common-0_1_xsd.html#externalreferenceType_label" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">externalreferenceType/label</a></b></div>
330
                              <div><b><a href="oaf-common-0_1_xsd.html#externalreferenceType_qualifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">externalreferenceType/qualifier</a></b></div>
331
                              <div><b><a href="oaf-common-0_1_xsd.html#externalreferenceType_refidentifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">externalreferenceType/refidentifier</a></b></div>
332
                              <div><b><a href="oaf-common-0_1_xsd.html#externalreferenceType_sitename" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">externalreferenceType/sitename</a></b></div>
333
                              <div><b><a href="oaf-common-0_1_xsd.html#fundingFlatType_funding_level_0" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">fundingFlatType/funding_level_0</a></b></div>
334
                              <div><b><a href="oaf-common-0_1_xsd.html#fundingFlatType_funding_level_1" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">fundingFlatType/funding_level_1</a></b></div>
335
                              <div><b><a href="oaf-common-0_1_xsd.html#fundingFlatType_funding_level_2" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">fundingFlatType/funding_level_2</a></b></div>
336
                              <div><b><a href="oaf-project-0_1_xsd.html#fundingParentType_funding_level_0" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">fundingParentType/funding_level_0</a></b></div>
337
                              <div><b><a href="oaf-project-0_1_xsd.html#fundingParentType_funding_level_1" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">fundingParentType/funding_level_1</a></b></div>
338
                              <div><b><a href="oaf-project-0_1_xsd.html#fundingTreeType_funding_level_1" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">fundingTreeType/funding_level_1</a></b></div>
339
                              <div><b><a href="oaf-project-0_1_xsd.html#fundingTreeType_funding_level_2" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">fundingTreeType/funding_level_2</a></b></div>
340
                              <div><b><a href="oaf-project-0_1_xsd.html#fundingType_class" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">fundingType/class</a></b></div>
341
                              <div><b><a href="oaf-project-0_1_xsd.html#fundingType_description" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">fundingType/description</a></b></div>
342
                              <div><b><a href="oaf-project-0_1_xsd.html#fundingType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">fundingType/id</a></b></div>
343
                              <div><b><a href="oaf-project-0_1_xsd.html#fundingType_name" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">fundingType/name</a></b></div>
344
                              <div><b><a href="oaf-project-0_1_xsd.html#fundingType_parent" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">fundingType/parent</a></b></div>
345
                              <div><b><a href="oaf-result-0_1_xsd.html#instanceType_hostedby" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">instanceType/hostedby</a></b></div>
346
                              <div><b><a href="oaf-result-0_1_xsd.html#instanceType_instancetype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">instanceType/instancetype</a></b></div>
347
                              <div><b><a href="oaf-result-0_1_xsd.html#instanceType_licence" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">instanceType/licence</a></b></div>
348
                              <div><b><a href="oaf-result-0_1_xsd.html#instanceType_webresource" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">instanceType/webresource</a></b></div>
349
                              <div><b><a href="oaf-org-0_1_xsd.html#organization" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization</a></b></div>
350
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_children" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/children</a></b></div>
351
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_collectedfrom" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/collectedfrom</a></b></div>
352
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_country" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/country</a></b></div>
353
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_datainfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/datainfo</a></b></div>
354
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_ecenterprise" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/ecenterprise</a></b></div>
355
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_echighereducation" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/echighereducation</a></b></div>
356
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_ecinternationalorganization" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/ecinternationalorganization</a></b></div>
357
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_ecinternationalorganizationeurinterests" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/ecinternationalorganizationeurinterests</a></b></div>
358
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_eclegalbody" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/eclegalbody</a></b></div>
359
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_eclegalperson" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/eclegalperson</a></b></div>
360
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_ecnonprofit" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/ecnonprofit</a></b></div>
361
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_ecnutscode" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/ecnutscode</a></b></div>
362
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_ecresearchorganization" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/ecresearchorganization</a></b></div>
363
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_ecsmevalidated" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/ecsmevalidated</a></b></div>
364
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_legalname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/legalname</a></b></div>
365
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_legalshortname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/legalshortname</a></b></div>
366
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_logourl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/logourl</a></b></div>
367
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_originalId" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/originalId</a></b></div>
368
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_pid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/pid</a></b></div>
369
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_rels" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/rels</a></b></div>
370
                              <div><b><a href="oaf-org-0_1_xsd.html#organization_websiteurl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-org-0.1.xsd')">organization/websiteurl</a></b></div>
371
                              <div><b><a href="oaf-person-0_1_xsd.html#person" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-person-0.1.xsd')">person</a></b></div>
372
                              <div><b><a href="oaf-person-0_1_xsd.html#person_children" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.1.xsd')">person/children</a></b></div>
373
                              <div><b><a href="oaf-person-0_1_xsd.html#person_collectedfrom" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.1.xsd')">person/collectedfrom</a></b></div>
374
                              <div><b><a href="oaf-person-0_1_xsd.html#person_datainfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.1.xsd')">person/datainfo</a></b></div>
375
                              <div><b><a href="oaf-person-0_1_xsd.html#person_email" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.1.xsd')">person/email</a></b></div>
376
                              <div><b><a href="oaf-person-0_1_xsd.html#person_fax" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.1.xsd')">person/fax</a></b></div>
377
                              <div><b><a href="oaf-person-0_1_xsd.html#person_firstname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.1.xsd')">person/firstname</a></b></div>
378
                              <div><b><a href="oaf-person-0_1_xsd.html#person_fullname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.1.xsd')">person/fullname</a></b></div>
379
                              <div><b><a href="oaf-person-0_1_xsd.html#person_nationality" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.1.xsd')">person/nationality</a></b></div>
380
                              <div><b><a href="oaf-person-0_1_xsd.html#person_originalId" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.1.xsd')">person/originalId</a></b></div>
381
                              <div><b><a href="oaf-person-0_1_xsd.html#person_phone" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.1.xsd')">person/phone</a></b></div>
382
                              <div><b><a href="oaf-person-0_1_xsd.html#person_pid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.1.xsd')">person/pid</a></b></div>
383
                              <div><b><a href="oaf-person-0_1_xsd.html#person_rels" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.1.xsd')">person/rels</a></b></div>
384
                              <div><b><a href="oaf-person-0_1_xsd.html#person_secondnames" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-person-0.1.xsd')">person/secondnames</a></b></div>
385
                              <div><b><a href="oaf-project-0_1_xsd.html#project" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">project</a></b></div>
386
                              <div><b><a href="oaf-project-0_1_xsd.html#project_acronym" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">project/acronym</a></b></div>
387
                              <div><b><a href="oaf-project-0_1_xsd.html#project_callidentifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">project/callidentifier</a></b></div>
388
                              <div><b><a href="oaf-project-0_1_xsd.html#project_children" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">project/children</a></b></div>
389
                              <div><b><a href="oaf-project-0_1_xsd.html#project_code" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">project/code</a></b></div>
390
                              <div><b><a href="oaf-project-0_1_xsd.html#project_collectedfrom" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">project/collectedfrom</a></b></div>
391
                              <div><b><a href="oaf-project-0_1_xsd.html#project_contracttype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">project/contracttype</a></b></div>
392
                              <div><b><a href="oaf-project-0_1_xsd.html#project_datainfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">project/datainfo</a></b></div>
393
                              <div><b><a href="oaf-project-0_1_xsd.html#project_duration" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">project/duration</a></b></div>
394
                              <div><b><a href="oaf-project-0_1_xsd.html#project_ecsc39" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">project/ecsc39</a></b></div>
395
                              <div><b><a href="oaf-project-0_1_xsd.html#project_enddate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">project/enddate</a></b></div>
396
                              <div><b><a href="oaf-project-0_1_xsd.html#project_fundingtree" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">project/fundingtree</a></b></div>
397
                              <div><b><a href="oaf-project-0_1_xsd.html#project_keywords" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">project/keywords</a></b></div>
398
                              <div><b><a href="oaf-project-0_1_xsd.html#project_originalId" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">project/originalId</a></b></div>
399
                              <div><b><a href="oaf-project-0_1_xsd.html#project_pid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">project/pid</a></b></div>
400
                              <div><b><a href="oaf-project-0_1_xsd.html#project_rels" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">project/rels</a></b></div>
401
                              <div><b><a href="oaf-project-0_1_xsd.html#project_startdate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">project/startdate</a></b></div>
402
                              <div><b><a href="oaf-project-0_1_xsd.html#project_title" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">project/title</a></b></div>
403
                              <div><b><a href="oaf-project-0_1_xsd.html#project_websiteurl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">project/websiteurl</a></b></div>
404
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_acronym" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/acronym</a></b></div>
405
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_code" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/code</a></b></div>
406
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_contracttype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/contracttype</a></b></div>
407
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_country" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/country</a></b></div>
408
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_datasourcetype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/datasourcetype</a></b></div>
409
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_datasourcetypeui" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/datasourcetypeui</a></b></div>
410
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_dateofacceptance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/dateofacceptance</a></b></div>
411
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_email" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/email</a></b></div>
412
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_fax" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/fax</a></b></div>
413
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_fullname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/fullname</a></b></div>
414
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_funding" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/funding</a></b></div>
415
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_legalname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/legalname</a></b></div>
416
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_legalshortname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/legalshortname</a></b></div>
417
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_officialname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/officialname</a></b></div>
418
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_participantnumber" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/participantnumber</a></b></div>
419
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_phone" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/phone</a></b></div>
420
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_publisher" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/publisher</a></b></div>
421
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_ranking" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/ranking</a></b></div>
422
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_resulttype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/resulttype</a></b></div>
423
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_title" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/title</a></b></div>
424
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_to" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/to</a></b></div>
425
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_websiteurl" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/websiteurl</a></b></div>
426
                              <div><b><a href="oaf-common-0_1_xsd.html#relsType_rel" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relsType/rel</a></b></div>
427
                              <div><b><a href="oaf-result-0_1_xsd.html#result" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result</a></b></div>
428
                              <div><b><a href="oaf-result-0_1_xsd.html#result_bestlicense" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/bestlicense</a></b></div>
429
                              <div><b><a href="oaf-result-0_1_xsd.html#result_children" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/children</a></b></div>
430
                              <div><b><a href="oaf-result-0_1_xsd.html#result_collectedfrom" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/collectedfrom</a></b></div>
431
                              <div><b><a href="oaf-result-0_1_xsd.html#result_context" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/context</a></b></div>
432
                              <div><b><a href="oaf-result-0_1_xsd.html#result_datainfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/datainfo</a></b></div>
433
                              <div><b><a href="oaf-result-0_1_xsd.html#result_dateofacceptance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/dateofacceptance</a></b></div>
434
                              <div><b><a href="oaf-result-0_1_xsd.html#result_description" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/description</a></b></div>
435
                              <div><b><a href="oaf-result-0_1_xsd.html#result_device" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/device</a></b></div>
436
                              <div><b><a href="oaf-result-0_1_xsd.html#result_embargoenddate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/embargoenddate</a></b></div>
437
                              <div><b><a href="oaf-result-0_1_xsd.html#result_format" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/format</a></b></div>
438
                              <div><b><a href="oaf-result-0_1_xsd.html#result_fulltext" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/fulltext</a></b></div>
439
                              <div><b><a href="oaf-result-0_1_xsd.html#result_journal" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/journal</a></b></div>
440
                              <div><b><a href="oaf-result-0_1_xsd.html#result_language" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/language</a></b></div>
441
                              <div><b><a href="oaf-result-0_1_xsd.html#result_lastmetadataupdate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/lastmetadataupdate</a></b></div>
442
                              <div><b><a href="oaf-result-0_1_xsd.html#result_metadataversionnumber" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/metadataversionnumber</a></b></div>
443
                              <div><b><a href="oaf-result-0_1_xsd.html#result_originalId" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/originalId</a></b></div>
444
                              <div><b><a href="oaf-result-0_1_xsd.html#result_pid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/pid</a></b></div>
445
                              <div><b><a href="oaf-result-0_1_xsd.html#result_publisher" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/publisher</a></b></div>
446
                              <div><b><a href="oaf-result-0_1_xsd.html#result_relevantdate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/relevantdate</a></b></div>
447
                              <div><b><a href="oaf-result-0_1_xsd.html#result_rels" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/rels</a></b></div>
448
                              <div><b><a href="oaf-result-0_1_xsd.html#result_resourcetype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/resourcetype</a></b></div>
449
                              <div><b><a href="oaf-result-0_1_xsd.html#result_resulttype" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/resulttype</a></b></div>
450
                              <div><b><a href="oaf-result-0_1_xsd.html#result_size" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/size</a></b></div>
451
                              <div><b><a href="oaf-result-0_1_xsd.html#result_source" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/source</a></b></div>
452
                              <div><b><a href="oaf-result-0_1_xsd.html#result_storagedate" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/storagedate</a></b></div>
453
                              <div><b><a href="oaf-result-0_1_xsd.html#result_subject" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/subject</a></b></div>
454
                              <div><b><a href="oaf-result-0_1_xsd.html#result_title" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/title</a></b></div>
455
                              <div><b><a href="oaf-result-0_1_xsd.html#result_version" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">result/version</a></b></div>
456
                              <div><b><a href="oaf-result-0_1_xsd.html#resultChildrenType_externalreference" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">resultChildrenType/externalreference</a></b></div>
457
                              <div><b><a href="oaf-result-0_1_xsd.html#resultChildrenType_instance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">resultChildrenType/instance</a></b></div>
458
                              <div><b><a href="oaf-result-0_1_xsd.html#resultChildrenType_result" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">resultChildrenType/result</a></b></div>
459
                              <div><b><a href="oaf-result-0_1_xsd.html#webresourceType_url" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">webresourceType/url</a></b></div>
460
                           </div>
461
                        </td>
462
                        <td class="rt_lineRight"></td>
463
                     </tr>
464
                     <tr>
465
                        <td class="rt_cornerBottomLeft"></td>
466
                        <td class="rt_lineBottom"></td>
467
                        <td class="rt_cornerBottomRight"></td>
468
                     </tr>
469
                  </table>
470
               </div>
471
               <div class="horizontalLayout">
472
                  <table class="rt">
473
                     <tr>
474
                        <td class="rt_cornerTopLeft"></td>
475
                        <td class="rt_lineTop"></td>
476
                        <td class="rt_cornerTopRight"></td>
477
                     </tr>
478
                     <tr>
479
                        <td class="rt_lineLeft"></td>
480
                        <td class="rt_content">
481
                           <div class="componentGroupTitle">Complex Types
482
                              
483
                           </div>
484
                           <div id="Complex_Type" style="display:block">
485
                              <div><b><a href="oaf-result-0_1_xsd.html#categoryType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">categoryType</a></b></div>
486
                              <div><b><a href="oaf-result-0_1_xsd.html#childrenResult" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">childrenResult</a></b></div>
487
                              <div><b><a href="oaf-common-0_1_xsd.html#classedSchemedElement" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">classedSchemedElement</a></b></div>
488
                              <div><b><a href="oaf-result-0_1_xsd.html#conceptType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">conceptType</a></b></div>
489
                              <div><b><a href="oaf-result-0_1_xsd.html#contextType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">contextType</a></b></div>
490
                              <div><b><a href="oaf-common-0_1_xsd.html#datainfoType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">datainfoType</a></b></div>
491
                              <div><b><a href="oaf-common-0_1_xsd.html#externalreferenceType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">externalreferenceType</a></b></div>
492
                              <div><b><a href="oaf-common-0_1_xsd.html#fundingFlatType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">fundingFlatType</a></b></div>
493
                              <div><b><a href="oaf-project-0_1_xsd.html#fundingParentType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">fundingParentType</a></b></div>
494
                              <div><b><a href="oaf-project-0_1_xsd.html#fundingTreeType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">fundingTreeType</a></b></div>
495
                              <div><b><a href="oaf-project-0_1_xsd.html#fundingType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-0.1.xsd')">fundingType</a></b></div>
496
                              <div><b><a href="oaf-result-0_1_xsd.html#instanceType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">instanceType</a></b></div>
497
                              <div><b><a href="oaf-result-0_1_xsd.html#journalType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">journalType</a></b></div>
498
                              <div><b><a href="oaf-common-0_1_xsd.html#labeledIdElement" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">labeledIdElement</a></b></div>
499
                              <div><b><a href="oaf-common-0_1_xsd.html#namedIdElement" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">namedIdElement</a></b></div>
500
                              <div><b><a href="oaf-common-0_1_xsd.html#optionalClassedSchemedElement" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">optionalClassedSchemedElement</a></b></div>
501
                              <div><b><a href="oaf-common-0_1_xsd.html#relToType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relToType</a></b></div>
502
                              <div><b><a href="oaf-common-0_1_xsd.html#relType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType</a></b></div>
503
                              <div><b><a href="oaf-common-0_1_xsd.html#relsType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relsType</a></b></div>
504
                              <div><b><a href="oaf-result-0_1_xsd.html#resultChildrenType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">resultChildrenType</a></b></div>
505
                              <div><b><a href="oaf-result-0_1_xsd.html#webresourceType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">webresourceType</a></b></div>
506
                           </div>
507
                        </td>
508
                        <td class="rt_lineRight"></td>
509
                     </tr>
510
                     <tr>
511
                        <td class="rt_cornerBottomLeft"></td>
512
                        <td class="rt_lineBottom"></td>
513
                        <td class="rt_cornerBottomRight"></td>
514
                     </tr>
515
                  </table>
516
               </div>
517
               <div class="horizontalLayout">
518
                  <table class="rt">
519
                     <tr>
520
                        <td class="rt_cornerTopLeft"></td>
521
                        <td class="rt_lineTop"></td>
522
                        <td class="rt_cornerTopRight"></td>
523
                     </tr>
524
                     <tr>
525
                        <td class="rt_lineLeft"></td>
526
                        <td class="rt_content">
527
                           <div class="componentGroupTitle">Attributes
528
                              
529
                           </div>
530
                           <div id="Attribute" style="display:block">
531
                              <div><b><a href="oaf-result-0_1_xsd.html#categoryType_claim" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">categoryType/@claim</a></b></div>
532
                              <div><b><a href="oaf-result-0_1_xsd.html#childrenResult_objidentifier" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">childrenResult/@objidentifier</a></b></div>
533
                              <div><b><a href="oaf-common-0_1_xsd.html#classSchemeAttrGroup_classid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">classSchemeAttrGroup/@classid</a></b></div>
534
                              <div><b><a href="oaf-common-0_1_xsd.html#classSchemeAttrGroup_classname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">classSchemeAttrGroup/@classname</a></b></div>
535
                              <div><b><a href="oaf-common-0_1_xsd.html#classSchemeAttrGroup_schemeid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">classSchemeAttrGroup/@schemeid</a></b></div>
536
                              <div><b><a href="oaf-common-0_1_xsd.html#classSchemeAttrGroup_schemename" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">classSchemeAttrGroup/@schemename</a></b></div>
537
                              <div><b><a href="oaf-result-0_1_xsd.html#conceptType_claim" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">conceptType/@claim</a></b></div>
538
                              <div><b><a href="oaf-result-0_1_xsd.html#contextType_type" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">contextType/@type</a></b></div>
539
                              <div><b><a href="oaf-result-0_1_xsd.html#instanceType_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">instanceType/@id</a></b></div>
540
                              <div><b><a href="oaf-result-0_1_xsd.html#journalType_eissn" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">journalType/@eissn</a></b></div>
541
                              <div><b><a href="oaf-result-0_1_xsd.html#journalType_issn" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">journalType/@issn</a></b></div>
542
                              <div><b><a href="oaf-result-0_1_xsd.html#journalType_lissn" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-result-0.1.xsd')">journalType/@lissn</a></b></div>
543
                              <div><b><a href="oaf-common-0_1_xsd.html#labeledIdElement_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">labeledIdElement/@id</a></b></div>
544
                              <div><b><a href="oaf-common-0_1_xsd.html#labeledIdElement_label" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">labeledIdElement/@label</a></b></div>
545
                              <div><b><a href="oaf-common-0_1_xsd.html#namedIdElement_id" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">namedIdElement/@id</a></b></div>
546
                              <div><b><a href="oaf-common-0_1_xsd.html#namedIdElement_name" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">namedIdElement/@name</a></b></div>
547
                              <div><b><a href="oaf-common-0_1_xsd.html#optionalClassSchemeAttrGroup_classid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">optionalClassSchemeAttrGroup/@classid</a></b></div>
548
                              <div><b><a href="oaf-common-0_1_xsd.html#optionalClassSchemeAttrGroup_classname" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">optionalClassSchemeAttrGroup/@classname</a></b></div>
549
                              <div><b><a href="oaf-common-0_1_xsd.html#optionalClassSchemeAttrGroup_schemeid" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">optionalClassSchemeAttrGroup/@schemeid</a></b></div>
550
                              <div><b><a href="oaf-common-0_1_xsd.html#optionalClassSchemeAttrGroup_schemename" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">optionalClassSchemeAttrGroup/@schemename</a></b></div>
551
                              <div><b><a href="oaf-common-0_1_xsd.html#relToType_class" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relToType/@class</a></b></div>
552
                              <div><b><a href="oaf-common-0_1_xsd.html#relToType_scheme" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relToType/@scheme</a></b></div>
553
                              <div><b><a href="oaf-common-0_1_xsd.html#relToType_type" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relToType/@type</a></b></div>
554
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_inferenceprovenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/@inferenceprovenance</a></b></div>
555
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_inferred" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/@inferred</a></b></div>
556
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_provenanceaction" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/@provenanceaction</a></b></div>
557
                              <div><b><a href="oaf-common-0_1_xsd.html#relType_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">relType/@trust</a></b></div>
558
                           </div>
559
                        </td>
560
                        <td class="rt_lineRight"></td>
561
                     </tr>
562
                     <tr>
563
                        <td class="rt_cornerBottomLeft"></td>
564
                        <td class="rt_lineBottom"></td>
565
                        <td class="rt_cornerBottomRight"></td>
566
                     </tr>
567
                  </table>
568
               </div>
569
               <div class="horizontalLayout">
570
                  <table class="rt">
571
                     <tr>
572
                        <td class="rt_cornerTopLeft"></td>
573
                        <td class="rt_lineTop"></td>
574
                        <td class="rt_cornerTopRight"></td>
575
                     </tr>
576
                     <tr>
577
                        <td class="rt_lineLeft"></td>
578
                        <td class="rt_content">
579
                           <div class="componentGroupTitle">Attribute Groups
580
                              
581
                           </div>
582
                           <div id="Attribute_Group" style="display:block">
583
                              <div><b><a href="oaf-common-0_1_xsd.html#classSchemeAttrGroup" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">classSchemeAttrGroup</a></b></div>
584
                              <div><b><a href="oaf-common-0_1_xsd.html#optionalClassSchemeAttrGroup" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.1.xsd')">optionalClassSchemeAttrGroup</a></b></div>
585
                           </div>
586
                        </td>
587
                        <td class="rt_lineRight"></td>
588
                     </tr>
589
                     <tr>
590
                        <td class="rt_cornerBottomLeft"></td>
591
                        <td class="rt_lineBottom"></td>
592
                        <td class="rt_cornerBottomRight"></td>
593
                     </tr>
594
                  </table>
595
               </div>
596
               <div style="clear:left"></div>
597
            </div>
598
         </div>
599
      </div>
600
      <div class="footer">
601
         <hr />
602
         <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.
603
         </div>
604
      </div>
605
   </body>
606
</html>
(6-6/20)