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-result-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-result-0.1.indexList.html', 'oaf-result-0.1.indexListns.html', 'oaf-result-0.1.indexListcomp.html');">
254
                     <option value="toc_group_by_namespace" selected="selected">Namespace</option>
255
                     <option value="toc_group_by_location">Location</option>
256
                     <option value="toc_group_by_component_type">Component Type</option></select></span></div>
257
         </form>
258
         <div class="level1" id="toc_group_by_namespace" style="display:block">
259
            <div>
260
               <div class="level2">
261
                  <p><input id="button_boxIdNamespace1" type="image" value="-" src="img/btM.gif" onclick="switchState('boxIdNamespace1');" class="control" /><span class="indexGroupTitle">http://namespace.openaire.eu/oaf</span></p>
262
                  <div id="boxIdNamespace1" style="display:block">
263
                     <div class="horizontalLayout">
264
                        <table class="rt">
265
                           <tr>
266
                              <td class="rt_cornerTopLeft"></td>
267
                              <td class="rt_lineTop"></td>
268
                              <td class="rt_cornerTopRight"></td>
269
                           </tr>
270
                           <tr>
271
                              <td class="rt_lineLeft"></td>
272
                              <td class="rt_content">
273
                                 <div class="componentGroupTitle">Elements
274
                                    
275
                                 </div>
276
                                 <div id="boxIdNamespace1Element" style="display:block">
277
                                    <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>
278
                                 </div>
279
                              </td>
280
                              <td class="rt_lineRight"></td>
281
                           </tr>
282
                           <tr>
283
                              <td class="rt_cornerBottomLeft"></td>
284
                              <td class="rt_lineBottom"></td>
285
                              <td class="rt_cornerBottomRight"></td>
286
                           </tr>
287
                        </table>
288
                     </div>
289
                     <div class="horizontalLayout">
290
                        <table class="rt">
291
                           <tr>
292
                              <td class="rt_cornerTopLeft"></td>
293
                              <td class="rt_lineTop"></td>
294
                              <td class="rt_cornerTopRight"></td>
295
                           </tr>
296
                           <tr>
297
                              <td class="rt_lineLeft"></td>
298
                              <td class="rt_content">
299
                                 <div class="componentGroupTitle">Complex Types
300
                                    
301
                                 </div>
302
                                 <div id="boxIdNamespace1Complex_Type" style="display:block">
303
                                    <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>
304
                                    <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>
305
                                    <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>
306
                                    <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>
307
                                    <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>
308
                                    <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>
309
                                    <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>
310
                                    <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>
311
                                    <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>
312
                                    <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>
313
                                    <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>
314
                                    <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>
315
                                    <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>
316
                                    <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>
317
                                    <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>
318
                                    <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>
319
                                    <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>
320
                                    <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>
321
                                 </div>
322
                              </td>
323
                              <td class="rt_lineRight"></td>
324
                           </tr>
325
                           <tr>
326
                              <td class="rt_cornerBottomLeft"></td>
327
                              <td class="rt_lineBottom"></td>
328
                              <td class="rt_cornerBottomRight"></td>
329
                           </tr>
330
                        </table>
331
                     </div>
332
                     <div class="horizontalLayout">
333
                        <table class="rt">
334
                           <tr>
335
                              <td class="rt_cornerTopLeft"></td>
336
                              <td class="rt_lineTop"></td>
337
                              <td class="rt_cornerTopRight"></td>
338
                           </tr>
339
                           <tr>
340
                              <td class="rt_lineLeft"></td>
341
                              <td class="rt_content">
342
                                 <div class="componentGroupTitle">Attribute Groups
343
                                    
344
                                 </div>
345
                                 <div id="boxIdNamespace1Attribute_Group" style="display:block">
346
                                    <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>
347
                                    <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>
348
                                 </div>
349
                              </td>
350
                              <td class="rt_lineRight"></td>
351
                           </tr>
352
                           <tr>
353
                              <td class="rt_cornerBottomLeft"></td>
354
                              <td class="rt_lineBottom"></td>
355
                              <td class="rt_cornerBottomRight"></td>
356
                           </tr>
357
                        </table>
358
                     </div>
359
                     <div style="clear:left"></div>
360
                  </div>
361
               </div>
362
               <div class="level2">
363
                  <p><input id="button_boxIdNamespace2" type="image" value="-" src="img/btM.gif" onclick="switchState('boxIdNamespace2');" class="control" /><span class="indexGroupTitle">No namespace</span></p>
364
                  <div id="boxIdNamespace2" style="display:block">
365
                     <div class="horizontalLayout">
366
                        <table class="rt">
367
                           <tr>
368
                              <td class="rt_cornerTopLeft"></td>
369
                              <td class="rt_lineTop"></td>
370
                              <td class="rt_cornerTopRight"></td>
371
                           </tr>
372
                           <tr>
373
                              <td class="rt_lineLeft"></td>
374
                              <td class="rt_content">
375
                                 <div class="componentGroupTitle">Elements
376
                                    
377
                                 </div>
378
                                 <div id="boxIdNamespace2Element" style="display:block">
379
                                    <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>
380
                                    <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>
381
                                    <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>
382
                                    <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>
383
                                    <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>
384
                                    <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>
385
                                    <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>
386
                                    <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>
387
                                    <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>
388
                                    <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>
389
                                    <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>
390
                                    <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>
391
                                    <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>
392
                                    <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>
393
                                    <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>
394
                                    <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>
395
                                    <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>
396
                                    <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>
397
                                    <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>
398
                                    <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>
399
                                    <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>
400
                                    <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>
401
                                    <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>
402
                                    <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>
403
                                    <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>
404
                                    <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>
405
                                    <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>
406
                                    <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>
407
                                    <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>
408
                                    <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>
409
                                    <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>
410
                                    <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>
411
                                    <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>
412
                                    <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>
413
                                    <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>
414
                                    <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>
415
                                    <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>
416
                                    <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>
417
                                    <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>
418
                                    <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>
419
                                    <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>
420
                                    <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>
421
                                    <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>
422
                                    <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>
423
                                    <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>
424
                                    <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>
425
                                    <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>
426
                                    <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>
427
                                    <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>
428
                                    <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>
429
                                    <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>
430
                                    <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>
431
                                    <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>
432
                                    <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>
433
                                    <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>
434
                                    <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>
435
                                    <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>
436
                                    <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>
437
                                    <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>
438
                                    <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>
439
                                    <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>
440
                                    <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>
441
                                    <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>
442
                                    <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>
443
                                    <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>
444
                                    <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>
445
                                    <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>
446
                                    <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>
447
                                    <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>
448
                                    <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>
449
                                    <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>
450
                                    <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>
451
                                    <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>
452
                                    <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>
453
                                    <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>
454
                                    <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>
455
                                    <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>
456
                                    <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>
457
                                 </div>
458
                              </td>
459
                              <td class="rt_lineRight"></td>
460
                           </tr>
461
                           <tr>
462
                              <td class="rt_cornerBottomLeft"></td>
463
                              <td class="rt_lineBottom"></td>
464
                              <td class="rt_cornerBottomRight"></td>
465
                           </tr>
466
                        </table>
467
                     </div>
468
                     <div class="horizontalLayout">
469
                        <table class="rt">
470
                           <tr>
471
                              <td class="rt_cornerTopLeft"></td>
472
                              <td class="rt_lineTop"></td>
473
                              <td class="rt_cornerTopRight"></td>
474
                           </tr>
475
                           <tr>
476
                              <td class="rt_lineLeft"></td>
477
                              <td class="rt_content">
478
                                 <div class="componentGroupTitle">Attributes
479
                                    
480
                                 </div>
481
                                 <div id="boxIdNamespace2Attribute" style="display:block">
482
                                    <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>
483
                                    <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>
484
                                    <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>
485
                                    <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>
486
                                    <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>
487
                                    <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>
488
                                    <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>
489
                                    <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>
490
                                    <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>
491
                                    <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>
492
                                    <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>
493
                                    <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>
494
                                    <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>
495
                                    <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>
496
                                    <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>
497
                                    <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>
498
                                    <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>
499
                                    <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>
500
                                    <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>
501
                                    <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>
502
                                    <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>
503
                                    <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>
504
                                    <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>
505
                                    <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>
506
                                    <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>
507
                                    <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>
508
                                    <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>
509
                                 </div>
510
                              </td>
511
                              <td class="rt_lineRight"></td>
512
                           </tr>
513
                           <tr>
514
                              <td class="rt_cornerBottomLeft"></td>
515
                              <td class="rt_lineBottom"></td>
516
                              <td class="rt_cornerBottomRight"></td>
517
                           </tr>
518
                        </table>
519
                     </div>
520
                     <div style="clear:left"></div>
521
                  </div>
522
               </div>
523
            </div>
524
         </div>
525
      </div>
526
      <div class="footer">
527
         <hr />
528
         <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.
529
         </div>
530
      </div>
531
   </body>
532
</html>
(18-18/20)