1
|
<!DOCTYPE html
|
2
|
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
4
|
<head>
|
5
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
6
|
<title>Schema documentation for oaf.xsd</title>
|
7
|
<link rel="stylesheet" href="docHtml.css" type="text/css" /><script type="text/javascript">
|
8
|
<!--
|
9
|
var propertiesBoxes= new Array('properties_oaf.xsd',
|
10
|
'properties_entity',
|
11
|
'properties_entity_extraInfo');
|
12
|
|
13
|
|
14
|
|
15
|
var sourceBoxes= new Array('source_entity',
|
16
|
'source_entity_extraInfo');
|
17
|
|
18
|
var instanceBoxes= new Array('instance_entity');
|
19
|
|
20
|
var diagramBoxes= new Array('diagram_entity',
|
21
|
'diagram_entity_extraInfo');
|
22
|
|
23
|
var annotationBoxes= new Array('annotations_oaf.xsd',
|
24
|
'annotations_entity_extraInfo');
|
25
|
|
26
|
var attributesBoxes= new Array('attributes_entity_extraInfo');
|
27
|
|
28
|
|
29
|
var button_prefix = 'button_';
|
30
|
|
31
|
/**
|
32
|
* Returns an element in the current HTML document.
|
33
|
*
|
34
|
* @param elementID Identifier of HTML element
|
35
|
* @return HTML element object
|
36
|
*/
|
37
|
function getElementObject(elementID) {
|
38
|
var elemObj = null;
|
39
|
if (document.getElementById) {
|
40
|
elemObj = document.getElementById(elementID);
|
41
|
}
|
42
|
return elemObj;
|
43
|
}
|
44
|
|
45
|
/**
|
46
|
* Switches the state of a collapseable box, e.g.
|
47
|
* if it's opened, it'll be closed, and vice versa.
|
48
|
*
|
49
|
* @param boxID Identifier of box
|
50
|
*/
|
51
|
function switchState(boxID) {
|
52
|
var boxObj = getElementObject(boxID);
|
53
|
var buttonObj = getElementObject(button_prefix + boxID);
|
54
|
if (boxObj == null || buttonObj == null) {
|
55
|
// Box or button not found
|
56
|
} else if (boxObj.style.display == "none") {
|
57
|
// Box is closed, so open it
|
58
|
openBox(boxObj, buttonObj);
|
59
|
} else if (boxObj.style.display == "block") {
|
60
|
// Box is opened, so close it
|
61
|
closeBox(boxObj, buttonObj);
|
62
|
}
|
63
|
}
|
64
|
|
65
|
/**
|
66
|
* Opens a collapseable box.
|
67
|
*
|
68
|
* @param boxObj Collapseable box
|
69
|
* @param buttonObj Button controlling box
|
70
|
*/
|
71
|
function openBox(boxObj, buttonObj) {
|
72
|
if (boxObj == null || buttonObj == null) {
|
73
|
// Box or button not found
|
74
|
} else {
|
75
|
// Change 'display' CSS property of box
|
76
|
boxObj.style.display = "block";
|
77
|
|
78
|
// Change text of button
|
79
|
if (boxObj.style.display == "block") {
|
80
|
buttonObj.src = "img/btM.gif";
|
81
|
}
|
82
|
}
|
83
|
}
|
84
|
|
85
|
/**
|
86
|
* Closes a collapseable box.
|
87
|
*
|
88
|
* @param boxObj Collapseable box
|
89
|
* @param buttonObj Button controlling box
|
90
|
*/
|
91
|
function closeBox(boxObj, buttonObj) {
|
92
|
if (boxObj == null || buttonObj == null) {
|
93
|
// Box or button not found
|
94
|
} else {
|
95
|
// Change 'display' CSS property of box
|
96
|
boxObj.style.display = "none";
|
97
|
|
98
|
// Change text of button
|
99
|
if (boxObj.style.display == "none") {
|
100
|
buttonObj.src = "img/btP.gif";
|
101
|
}
|
102
|
}
|
103
|
}
|
104
|
|
105
|
function switchStateForAll(buttonObj, boxList) {
|
106
|
if (buttonObj == null) {
|
107
|
// button not found
|
108
|
} else if (buttonObj.value == "+") {
|
109
|
// Expand all
|
110
|
expandAll(boxList);
|
111
|
buttonObj.value = "-";
|
112
|
} else if (buttonObj.value == "-") {
|
113
|
// Collapse all
|
114
|
collapseAll(boxList);
|
115
|
buttonObj.value = "+";
|
116
|
}
|
117
|
}
|
118
|
|
119
|
/**
|
120
|
* Closes all boxes in a given list.
|
121
|
*
|
122
|
* @param boxList Array of box IDs
|
123
|
*/
|
124
|
function collapseAll(boxList) {
|
125
|
var idx;
|
126
|
for (idx = 0; idx < boxList.length; idx++) {
|
127
|
var boxObj = getElementObject(boxList[idx]);
|
128
|
var buttonObj = getElementObject(button_prefix + boxList[idx]);
|
129
|
closeBox(boxObj, buttonObj);
|
130
|
}
|
131
|
}
|
132
|
|
133
|
/**
|
134
|
* Open all boxes in a given list.
|
135
|
*
|
136
|
* @param boxList Array of box IDs
|
137
|
*/
|
138
|
function expandAll(boxList) {
|
139
|
var idx;
|
140
|
for (idx = 0; idx < boxList.length; idx++) {
|
141
|
var boxObj = getElementObject(boxList[idx]);
|
142
|
var buttonObj = getElementObject(button_prefix + boxList[idx]);
|
143
|
openBox(boxObj, buttonObj);
|
144
|
}
|
145
|
}
|
146
|
|
147
|
/**
|
148
|
* Update the message presented in the title of the html page.
|
149
|
* - If the documentation was splited by namespace we present something like: "Documentation for namespace 'ns'"
|
150
|
* - If the documentation was splited by location we present somehing like: "Documentation for 'Schema.xsd'"
|
151
|
* - If no split we always present: "Documentation for 'MainSchema.xsd'"
|
152
|
*/
|
153
|
function updatePageTitle(message) {
|
154
|
top.document.title = message;
|
155
|
}
|
156
|
|
157
|
|
158
|
|
159
|
/**
|
160
|
* Finds an HTML element by its ID and makes it floatable over the normal content.
|
161
|
*
|
162
|
* @param x_displacement The difference in pixels to the right side of the window from
|
163
|
* the left side of the element.
|
164
|
* @param y_displacement The difference in pixels to the right side of the window from
|
165
|
* the top of the element.
|
166
|
*/
|
167
|
function findAndFloat(id, x_displacement, y_displacement){
|
168
|
|
169
|
var element = getElementObject(id);
|
170
|
|
171
|
window[id + "_obj"] = element;
|
172
|
|
173
|
if(document.layers) {
|
174
|
element.style = element;
|
175
|
}
|
176
|
|
177
|
element.current_y = y_displacement;
|
178
|
element.first_time = true;
|
179
|
|
180
|
element.floatElement = function(){
|
181
|
// It may be closed by an user action.
|
182
|
|
183
|
// Target X and Y coordinates.
|
184
|
var x, y;
|
185
|
|
186
|
var myWidth = 0, myHeight = 0;
|
187
|
if( typeof( window.innerWidth ) == 'number' ) {
|
188
|
//Non-IE
|
189
|
myWidth = window.innerWidth;
|
190
|
myHeight = window.innerHeight;
|
191
|
} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
|
192
|
//IE 6+ in 'standards compliant mode'
|
193
|
myWidth = document.documentElement.clientWidth;
|
194
|
myHeight = document.documentElement.clientHeight;
|
195
|
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
|
196
|
//IE 4 compatible
|
197
|
myWidth = document.body.clientWidth;
|
198
|
myHeight = document.body.clientHeight;
|
199
|
}
|
200
|
|
201
|
|
202
|
x = myWidth - x_displacement;
|
203
|
|
204
|
var ns = (navigator.appName.indexOf("Netscape") != -1);
|
205
|
y = ns ? pageYOffset : document.documentElement && document.documentElement.scrollTop ?
|
206
|
document.documentElement.scrollTop : document.body.scrollTop;
|
207
|
y = y + y_displacement;
|
208
|
|
209
|
// The current y is the current coordinate of the floating element.
|
210
|
// This should be at the limit the y target coordinate.
|
211
|
this.current_y += (y - this.current_y)/1.25;
|
212
|
|
213
|
// Add the pixels constant after the values
|
214
|
// and move the element.
|
215
|
var px = document.layers ? "" : "px";
|
216
|
this.style.left = x + px;
|
217
|
this.style.top = this.current_y + px;
|
218
|
|
219
|
setTimeout(this.id + "_obj.floatElement()", 100);
|
220
|
}
|
221
|
|
222
|
element.floatElement();
|
223
|
return element;
|
224
|
}
|
225
|
|
226
|
/**
|
227
|
* Finds an HTML element by its ID and makes it floatable over the normal content.
|
228
|
*
|
229
|
* @param x_displacement The difference in pixels to the right side of the window from
|
230
|
* the left side of the element.
|
231
|
* @param y_displacement The difference in pixels to the right side of the window from
|
232
|
* the top of the element.
|
233
|
*/
|
234
|
function selectTOCGroupBy(id, isChunked, indexFileLocation, indexFileNamespace, indexFileComponent){
|
235
|
|
236
|
if (!isChunked) {
|
237
|
var selectIds = new Array('toc_group_by_namespace', 'toc_group_by_location', 'toc_group_by_component_type');
|
238
|
// Make all the tabs invisible.
|
239
|
for (i = 0; i < 3; i++){
|
240
|
var tab = getElementObject(selectIds[i]);
|
241
|
tab.style.display = 'none';
|
242
|
}
|
243
|
var selTab = getElementObject(id);
|
244
|
selTab.style.display = 'block';
|
245
|
} else {
|
246
|
if (id == 'toc_group_by_namespace') {
|
247
|
parent.indexFrame.location = indexFileNamespace;
|
248
|
} else if (id == 'toc_group_by_location') {
|
249
|
parent.indexFrame.location = indexFileLocation;
|
250
|
} else if (id == 'toc_group_by_component_type') {
|
251
|
parent.indexFrame.location = indexFileComponent;
|
252
|
}
|
253
|
}
|
254
|
}
|
255
|
|
256
|
|
257
|
--></script></head>
|
258
|
<body>
|
259
|
<div id="global_controls" class="globalControls" style="position:absolute;right:0;">
|
260
|
<table class="rt">
|
261
|
<tr>
|
262
|
<td class="rt_cornerTopLeft"></td>
|
263
|
<td class="rt_lineTop"></td>
|
264
|
<td class="rt_cornerTopRight"></td>
|
265
|
</tr>
|
266
|
<tr>
|
267
|
<td class="rt_lineLeft"></td>
|
268
|
<td class="rt_content">
|
269
|
<h3>Showing:</h3>
|
270
|
<table>
|
271
|
<tr>
|
272
|
<td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, annotationBoxes);" class="control" /></span><span class="globalControlName">Annotations</span></td>
|
273
|
</tr>
|
274
|
<tr>
|
275
|
<td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, attributesBoxes);" class="control" /></span><span class="globalControlName">Attributes </span></td>
|
276
|
</tr>
|
277
|
<tr>
|
278
|
<td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, diagramBoxes);" class="control" /></span><span class="globalControlName">Diagrams</span></td>
|
279
|
</tr>
|
280
|
<tr>
|
281
|
<td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, instanceBoxes);" class="control" /></span><span class="globalControlName">Instances</span></td>
|
282
|
</tr>
|
283
|
<tr>
|
284
|
<td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, propertiesBoxes);" class="control" /></span><span class="globalControlName">Properties </span></td>
|
285
|
</tr>
|
286
|
<tr>
|
287
|
<td><span><input type="checkbox" value="-" checked="checked" onclick="switchStateForAll(this, sourceBoxes);" class="control" /></span><span class="globalControlName">Source</span></td>
|
288
|
</tr>
|
289
|
</table>
|
290
|
<div align="right"><span><input type="button" onclick="getElementObject('global_controls').style.display = 'none';" value="Close" /></span></div>
|
291
|
</td>
|
292
|
<td class="rt_lineRight"></td>
|
293
|
</tr>
|
294
|
<tr>
|
295
|
<td class="rt_cornerBottomLeft"></td>
|
296
|
<td class="rt_lineBottom"></td>
|
297
|
<td class="rt_cornerBottomRight"></td>
|
298
|
</tr>
|
299
|
</table>
|
300
|
</div><a id="oaf.xsd"></a><div class="componentTitle">Main schema <span class="qname">oaf.xsd</span></div>
|
301
|
<table class="rt">
|
302
|
<tr>
|
303
|
<td class="rt_cornerTopLeft"></td>
|
304
|
<td class="rt_lineTop"></td>
|
305
|
<td class="rt_cornerTopRight"></td>
|
306
|
</tr>
|
307
|
<tr>
|
308
|
<td class="rt_lineLeft"></td>
|
309
|
<td class="rt_content">
|
310
|
<table class="component">
|
311
|
<tbody>
|
312
|
<tr>
|
313
|
<td class="firstColumn"><b>Namespace</b></td>
|
314
|
<td>http://namespace.openaire.eu/oaf</td>
|
315
|
</tr>
|
316
|
<tr>
|
317
|
<td class="firstColumn">
|
318
|
<div class="floatLeft"><b>Annotations</b></div>
|
319
|
<div class="floatRight"><input id="button_annotations_oaf.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_oaf.xsd');" class="control" /></div>
|
320
|
</td>
|
321
|
<td>
|
322
|
<div id="annotations_oaf.xsd" style="display:block">
|
323
|
<div class="annotation">
|
324
|
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
|
325
|
<tr>
|
326
|
<td width="100%"><pre><span class="tT">This schema describes the OpenAIRE+ entities.</span></pre></td>
|
327
|
</tr>
|
328
|
</table>
|
329
|
</div>
|
330
|
</div>
|
331
|
</td>
|
332
|
</tr>
|
333
|
<tr>
|
334
|
<td class="firstColumn">
|
335
|
<div class="floatLeft"><b>Properties</b></div>
|
336
|
<div class="floatRight"><input id="button_properties_oaf.xsd" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_oaf.xsd');" class="control" /></div>
|
337
|
</td>
|
338
|
<td>
|
339
|
<div id="properties_oaf.xsd" style="display:block">
|
340
|
<table class="propertiesTable">
|
341
|
<tr>
|
342
|
<td class="firstColumn">attribute form default:
|
343
|
|
344
|
</td>
|
345
|
<td><b>unqualified</b></td>
|
346
|
</tr>
|
347
|
<tr>
|
348
|
<td class="firstColumn">element form default:
|
349
|
|
350
|
</td>
|
351
|
<td><b>unqualified</b></td>
|
352
|
</tr>
|
353
|
</table>
|
354
|
</div>
|
355
|
</td>
|
356
|
</tr>
|
357
|
<tr>
|
358
|
<td class="firstColumn"><b>Schema location</b></td>
|
359
|
<td>https://www.openaire.eu/schema/latest/oaf.xsd</td>
|
360
|
</tr>
|
361
|
</tbody>
|
362
|
</table>
|
363
|
</td>
|
364
|
<td class="rt_lineRight"></td>
|
365
|
</tr>
|
366
|
<tr>
|
367
|
<td class="rt_cornerBottomLeft"></td>
|
368
|
<td class="rt_lineBottom"></td>
|
369
|
<td class="rt_cornerBottomRight"></td>
|
370
|
</tr>
|
371
|
</table><a id="entity"></a><div class="componentTitle">Element <span class="qname">entity</span></div>
|
372
|
<table class="rt">
|
373
|
<tr>
|
374
|
<td class="rt_cornerTopLeft"></td>
|
375
|
<td class="rt_lineTop"></td>
|
376
|
<td class="rt_cornerTopRight"></td>
|
377
|
</tr>
|
378
|
<tr>
|
379
|
<td class="rt_lineLeft"></td>
|
380
|
<td class="rt_content">
|
381
|
<table class="component">
|
382
|
<tbody>
|
383
|
<tr>
|
384
|
<td class="firstColumn"><b>Namespace</b></td>
|
385
|
<td>http://namespace.openaire.eu/oaf</td>
|
386
|
</tr>
|
387
|
<tr>
|
388
|
<td class="firstColumn">
|
389
|
<div class="floatLeft"><b>Diagram</b></div>
|
390
|
<div class="floatRight"><input id="button_diagram_entity" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_entity');" class="control" /></div>
|
391
|
</td>
|
392
|
<td class="diagram">
|
393
|
<div id="diagram_entity" style="display:block"><img alt="Diagram" border="0" src="img/oaf_xsd_Element_entity.jpeg" usemap="#oaf_xsd_Element_entity" /><map name="oaf_xsd_Element_entity" id="oaf_xsd_Element_entity">
|
394
|
<area alt="oaf-result-0_2_xsd.tmp#result" href="oaf-result-0_2_xsd.html#result" coords="252,2,314,26" />
|
395
|
<area alt="oaf-person-0_2_xsd.tmp#person" href="oaf-person-0_2_xsd.html#person" coords="252,79,321,103" />
|
396
|
<area alt="oaf-org-0_2_xsd.tmp#organization" href="oaf-org-0_2_xsd.html#organization" coords="252,113,351,137" />
|
397
|
<area alt="oaf-datasource-0_2_xsd.tmp#datasource" href="oaf-datasource-0_2_xsd.html#datasource" coords="252,147,343,171" />
|
398
|
<area alt="oaf-project-0_2_xsd.tmp#project" href="oaf-project-0_2_xsd.html#project" coords="252,181,321,205" />
|
399
|
<area alt="oaf_xsd.tmp#entity_extraInfo" href="oaf_xsd.html#entity_extraInfo" coords="181,215,321,257" /></map></div>
|
400
|
</td>
|
401
|
</tr>
|
402
|
<tr>
|
403
|
<td class="firstColumn">
|
404
|
<div class="floatLeft"><b>Properties</b></div>
|
405
|
<div class="floatRight"><input id="button_properties_entity" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_entity');" class="control" /></div>
|
406
|
</td>
|
407
|
<td>
|
408
|
<div id="properties_entity" style="display:block">
|
409
|
<table class="propertiesTable">
|
410
|
<tr>
|
411
|
<td class="firstColumn">content:
|
412
|
|
413
|
</td>
|
414
|
<td><b>complex</b></td>
|
415
|
</tr>
|
416
|
</table>
|
417
|
</div>
|
418
|
</td>
|
419
|
</tr>
|
420
|
<tr>
|
421
|
<td class="firstColumn"><b>Model</b></td>
|
422
|
<td>(<b><a href="oaf-result-0_2_xsd.html#result" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-0.2.xsd')">result</a></b> | <b><a href="oaf-person-0_2_xsd.html#person" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">person</a></b> | <b><a href="oaf-org-0_2_xsd.html#organization" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-0.2.xsd')">organization</a></b> | <b><a href="oaf-datasource-0_2_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.2.xsd')">datasource</a></b> | <b><a href="oaf-project-0_2_xsd.html#project" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-0.2.xsd')">project</a></b>) , <b><a href="oaf_xsd.html#entity_extraInfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf.xsd')">extraInfo*</a></b></td>
|
423
|
</tr>
|
424
|
<tr>
|
425
|
<td class="firstColumn"><b>Children</b></td>
|
426
|
<td><b><a href="oaf-datasource-0_2_xsd.html#datasource" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-datasource-0.2.xsd')">datasource</a></b>, <b><a href="oaf_xsd.html#entity_extraInfo" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf.xsd')">extraInfo</a></b>, <b><a href="oaf-org-0_2_xsd.html#organization" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-org-0.2.xsd')">organization</a></b>, <b><a href="oaf-person-0_2_xsd.html#person" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-person-0.2.xsd')">person</a></b>, <b><a href="oaf-project-0_2_xsd.html#project" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-project-0.2.xsd')">project</a></b>, <b><a href="oaf-result-0_2_xsd.html#result" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-result-0.2.xsd')">result</a></b></td>
|
427
|
</tr>
|
428
|
<tr>
|
429
|
<td class="firstColumn">
|
430
|
<div class="floatLeft"><b>Instance</b></div>
|
431
|
<div class="floatRight"><input id="button_instance_entity" type="image" src="img/btM.gif" value="-" onclick="switchState('instance_entity');" class="control" /></div>
|
432
|
</td>
|
433
|
<td>
|
434
|
<div id="instance_entity" style="display:block">
|
435
|
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
|
436
|
<tr>
|
437
|
<td width="100%"><pre><span class="tEl"><entity</span><span class="tT"> </span><span class="tAN">xmlns=</span><span class="tAV">"http://namespace.openaire.eu/oaf"</span><span class="tEl">></span><span class="tI">
|
438
|
</span><span class="tEl"><result</span><span class="tEl">></span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl"></result></span><span class="tI">
|
439
|
</span><span class="tEl"><person</span><span class="tEl">></span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl"></person></span><span class="tI">
|
440
|
</span><span class="tEl"><organization</span><span class="tEl">></span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl"></organization></span><span class="tI">
|
441
|
</span><span class="tEl"><datasource</span><span class="tEl">></span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl"></datasource></span><span class="tI">
|
442
|
</span><span class="tEl"><project</span><span class="tEl">></span><span class="tT" style="white-space:normal">{1,1}</span><span class="tEl"></project></span><span class="tI">
|
443
|
</span><span class="tEl"><extraInfo</span><span class="tT"> </span><span class="tAN">name=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">provenance=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">trust=</span><span class="tAV">""</span><span class="tT"> </span><span class="tAN">typology=</span><span class="tAV">""</span><span class="tEl">></span><span class="tT" style="white-space:normal">{0,unbounded}</span><span class="tEl"></extraInfo></span><span class="tI">
|
444
|
</span><span class="tEl"></entity></span></pre></td>
|
445
|
</tr>
|
446
|
</table>
|
447
|
</div>
|
448
|
</td>
|
449
|
</tr>
|
450
|
<tr>
|
451
|
<td class="firstColumn">
|
452
|
<div class="floatLeft"><b>Source</b></div>
|
453
|
<div class="floatRight"><input id="button_source_entity" type="image" src="img/btM.gif" value="-" onclick="switchState('source_entity');" class="control" /></div>
|
454
|
</td>
|
455
|
<td>
|
456
|
<div id="source_entity" style="display:block">
|
457
|
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
|
458
|
<tr>
|
459
|
<td width="100%"><pre><span class="tEl"><xs:element</span><span class="tAN"> name=</span><span class="tAV">"entity"</span><span class="tEl">></span><span class="tI">
|
460
|
</span><span class="tEl"><xs:complexType</span><span class="tEl">></span><span class="tI">
|
461
|
</span><span class="tEl"><xs:sequence</span><span class="tEl">></span><span class="tI">
|
462
|
</span><span class="tEl"><xs:choice</span><span class="tEl">></span><span class="tI">
|
463
|
</span><span class="tEl"><xs:element</span><span class="tAN"> ref=</span><span class="tAV">"result"</span><span class="tEl">></span><span class="tI">
|
464
|
</span><span class="tEl"><xs:annotation</span><span class="tEl">></span><span class="tI">
|
465
|
</span><span class="tEl"><xs:documentation</span><span class="tEl">></span><span class="tT" style="white-space:normal">Entity of type result are publications and datasets</span><span class="tEl"></xs:documentation></span><span class="tI">
|
466
|
</span><span class="tEl"></xs:annotation></span><span class="tI">
|
467
|
</span><span class="tEl"></xs:element></span><span class="tI">
|
468
|
</span><span class="tEl"><xs:element</span><span class="tAN"> ref=</span><span class="tAV">"person"</span><span class="tEl">/></span><span class="tI">
|
469
|
</span><span class="tEl"><xs:element</span><span class="tAN"> ref=</span><span class="tAV">"organization"</span><span class="tEl">/></span><span class="tI">
|
470
|
</span><span class="tEl"><xs:element</span><span class="tAN"> ref=</span><span class="tAV">"datasource"</span><span class="tEl">/></span><span class="tI">
|
471
|
</span><span class="tEl"><xs:element</span><span class="tAN"> ref=</span><span class="tAV">"project"</span><span class="tEl">/></span><span class="tI">
|
472
|
</span><span class="tEl"></xs:choice></span><span class="tI">
|
473
|
</span><span class="tEl"><xs:element</span><span class="tAN"> name=</span><span class="tAV">"extraInfo"</span><span class="tAN"> type=</span><span class="tAV">"extraInfoType"</span><span class="tAN"> maxOccurs=</span><span class="tAV">"unbounded"</span><span class="tAN"> minOccurs=</span><span class="tAV">"0"</span><span class="tEl">></span><span class="tI">
|
474
|
</span><span class="tEl"><xs:annotation</span><span class="tEl">></span><span class="tI">
|
475
|
</span><span class="tEl"><xs:documentation</span><span class="tEl">></span><span class="tT" style="white-space:normal">Content-agnostic container for extra information about the current entity. Examples are information about statistics and citations. The values inside this field can be any well-formed XML.</span><span class="tEl"></xs:documentation></span><span class="tI">
|
476
|
</span><span class="tEl"></xs:annotation></span><span class="tI">
|
477
|
</span><span class="tEl"></xs:element></span><span class="tI">
|
478
|
</span><span class="tEl"></xs:sequence></span><span class="tI">
|
479
|
</span><span class="tEl"></xs:complexType></span><span class="tI">
|
480
|
</span><span class="tEl"></xs:element></span></pre></td>
|
481
|
</tr>
|
482
|
</table>
|
483
|
</div>
|
484
|
</td>
|
485
|
</tr>
|
486
|
<tr>
|
487
|
<td class="firstColumn"><b>Schema location</b></td>
|
488
|
<td>https://www.openaire.eu/schema/latest/oaf.xsd</td>
|
489
|
</tr>
|
490
|
</tbody>
|
491
|
</table>
|
492
|
</td>
|
493
|
<td class="rt_lineRight"></td>
|
494
|
</tr>
|
495
|
<tr>
|
496
|
<td class="rt_cornerBottomLeft"></td>
|
497
|
<td class="rt_lineBottom"></td>
|
498
|
<td class="rt_cornerBottomRight"></td>
|
499
|
</tr>
|
500
|
</table><a id="entity_extraInfo"></a><div class="componentTitle">Element <span class="qname"><b><a href="oaf_xsd.html#entity" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf.xsd')">entity</a></b> / extraInfo</span></div>
|
501
|
<table class="rt">
|
502
|
<tr>
|
503
|
<td class="rt_cornerTopLeft"></td>
|
504
|
<td class="rt_lineTop"></td>
|
505
|
<td class="rt_cornerTopRight"></td>
|
506
|
</tr>
|
507
|
<tr>
|
508
|
<td class="rt_lineLeft"></td>
|
509
|
<td class="rt_content">
|
510
|
<table class="component">
|
511
|
<tbody>
|
512
|
<tr>
|
513
|
<td class="firstColumn"><b>Namespace</b></td>
|
514
|
<td>No namespace</td>
|
515
|
</tr>
|
516
|
<tr>
|
517
|
<td class="firstColumn">
|
518
|
<div class="floatLeft"><b>Annotations</b></div>
|
519
|
<div class="floatRight"><input id="button_annotations_entity_extraInfo" type="image" src="img/btM.gif" value="-" onclick="switchState('annotations_entity_extraInfo');" class="control" /></div>
|
520
|
</td>
|
521
|
<td>
|
522
|
<div id="annotations_entity_extraInfo" style="display:block">
|
523
|
<div class="annotation">
|
524
|
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
|
525
|
<tr>
|
526
|
<td width="100%"><pre><span class="tT">Content-agnostic container for extra information about the current</span><span class="tI">
|
527
|
</span><span class="tT">entity. Examples are information about statistics and citations. The values inside</span><span class="tI">
|
528
|
</span><span class="tT">this field can be any well-formed XML.</span></pre></td>
|
529
|
</tr>
|
530
|
</table>
|
531
|
</div>
|
532
|
</div>
|
533
|
</td>
|
534
|
</tr>
|
535
|
<tr>
|
536
|
<td class="firstColumn">
|
537
|
<div class="floatLeft"><b>Diagram</b></div>
|
538
|
<div class="floatRight"><input id="button_diagram_entity_extraInfo" type="image" src="img/btM.gif" value="-" onclick="switchState('diagram_entity_extraInfo');" class="control" /></div>
|
539
|
</td>
|
540
|
<td class="diagram">
|
541
|
<div id="diagram_entity_extraInfo" style="display:block"><img alt="Diagram" border="0" src="img/oaf_xsd_Element_extraInfo.jpeg" usemap="#oaf_xsd_Element_extraInfo" /><map name="oaf_xsd_Element_extraInfo" id="oaf_xsd_Element_extraInfo">
|
542
|
<area alt="oaf-common-0_2_xsd.tmp#extraInfoType_name" href="oaf-common-0_2_xsd.html#extraInfoType_name" coords="216,78,293,102" />
|
543
|
<area alt="oaf-common-0_2_xsd.tmp#extraInfoType_typology" href="oaf-common-0_2_xsd.html#extraInfoType_typology" coords="216,168,311,192" />
|
544
|
<area alt="oaf-common-0_2_xsd.tmp#extraInfoType_provenance" href="oaf-common-0_2_xsd.html#extraInfoType_provenance" coords="216,258,327,282" />
|
545
|
<area alt="oaf-common-0_2_xsd.tmp#extraInfoType_trust" href="oaf-common-0_2_xsd.html#extraInfoType_trust" coords="216,292,290,316" />
|
546
|
<area alt="oaf-common-0_2_xsd.tmp#extraInfoType" href="oaf-common-0_2_xsd.html#extraInfoType" coords="191,3,317,25" /></map></div>
|
547
|
</td>
|
548
|
</tr>
|
549
|
<tr>
|
550
|
<td class="firstColumn"><b>Type</b></td>
|
551
|
<td><b><a href="oaf-common-0_2_xsd.html#extraInfoType" target="mainFrame" title="http://namespace.openaire.eu/oaf" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">extraInfoType</a></b></td>
|
552
|
</tr>
|
553
|
<tr>
|
554
|
<td class="firstColumn">
|
555
|
<div class="floatLeft"><b>Properties</b></div>
|
556
|
<div class="floatRight"><input id="button_properties_entity_extraInfo" type="image" src="img/btM.gif" value="-" onclick="switchState('properties_entity_extraInfo');" class="control" /></div>
|
557
|
</td>
|
558
|
<td>
|
559
|
<div id="properties_entity_extraInfo" style="display:block">
|
560
|
<table class="propertiesTable">
|
561
|
<tr>
|
562
|
<td class="firstColumn">content:
|
563
|
|
564
|
</td>
|
565
|
<td><b>complex</b></td>
|
566
|
</tr>
|
567
|
<tr>
|
568
|
<td class="firstColumn">minOccurs:
|
569
|
|
570
|
</td>
|
571
|
<td><b>0</b></td>
|
572
|
</tr>
|
573
|
<tr>
|
574
|
<td class="firstColumn">maxOccurs:
|
575
|
|
576
|
</td>
|
577
|
<td><b>unbounded</b></td>
|
578
|
</tr>
|
579
|
</table>
|
580
|
</div>
|
581
|
</td>
|
582
|
</tr>
|
583
|
<tr>
|
584
|
<td class="firstColumn"><b>Model</b></td>
|
585
|
<td><b>ANY element from ANY namespace</b></td>
|
586
|
</tr>
|
587
|
<tr>
|
588
|
<td class="firstColumn">
|
589
|
<div class="floatLeft"><b>Attributes</b></div>
|
590
|
<div class="floatRight"><input id="button_attributes_entity_extraInfo" type="image" src="img/btM.gif" value="-" onclick="switchState('attributes_entity_extraInfo');" class="control" /></div>
|
591
|
</td>
|
592
|
<td>
|
593
|
<div id="attributes_entity_extraInfo" style="display:block">
|
594
|
<table class="attributesTable">
|
595
|
<thead>
|
596
|
<tr>
|
597
|
<th>QName</th>
|
598
|
<th>Type</th>
|
599
|
<th>Fixed</th>
|
600
|
<th>Default</th>
|
601
|
<th>Use</th>
|
602
|
<th>Annotation</th>
|
603
|
</tr>
|
604
|
</thead>
|
605
|
<tr>
|
606
|
<td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#extraInfoType_name" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">name</a></b></td>
|
607
|
<td><b>xs:string</b></td>
|
608
|
<td></td>
|
609
|
<td></td>
|
610
|
<td>required</td>
|
611
|
<td>
|
612
|
<div class="annotation">
|
613
|
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
|
614
|
<tr>
|
615
|
<td width="100%"><pre><span class="tT">Human readable label that explains the type of</span><span class="tI">
|
616
|
</span><span class="tT">information we can find</span><span class="tI">
|
617
|
</span><span class="tT">inside this element. It corresponds to the value in the "typology"</span><span class="tI">
|
618
|
</span><span class="tT">attribute.</span></pre></td>
|
619
|
</tr>
|
620
|
</table>
|
621
|
</div>
|
622
|
</td>
|
623
|
</tr>
|
624
|
<tr>
|
625
|
<td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#extraInfoType_provenance" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">provenance</a></b></td>
|
626
|
<td><b>xs:string</b></td>
|
627
|
<td></td>
|
628
|
<td></td>
|
629
|
<td>optional</td>
|
630
|
<td>
|
631
|
<div class="annotation"></div>
|
632
|
</td>
|
633
|
</tr>
|
634
|
<tr>
|
635
|
<td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#extraInfoType_trust" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">trust</a></b></td>
|
636
|
<td><b>xs:string</b></td>
|
637
|
<td></td>
|
638
|
<td></td>
|
639
|
<td>optional</td>
|
640
|
<td>
|
641
|
<div class="annotation">
|
642
|
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
|
643
|
<tr>
|
644
|
<td width="100%"><pre><span class="tT">Value of trust of this information. Typically a</span><span class="tI">
|
645
|
</span><span class="tT">value in the range [0,1].</span><span class="tI">
|
646
|
</span><span class="tT">Higher the value, more trustworthy is the information.</span></pre></td>
|
647
|
</tr>
|
648
|
</table>
|
649
|
</div>
|
650
|
</td>
|
651
|
</tr>
|
652
|
<tr>
|
653
|
<td class="firstColumn"><b><a href="oaf-common-0_2_xsd.html#extraInfoType_typology" target="mainFrame" title="No namespace" onclick="updatePageTitle('Schema documentation for oaf-common-0.2.xsd')">typology</a></b></td>
|
654
|
<td><b>xs:string</b></td>
|
655
|
<td></td>
|
656
|
<td></td>
|
657
|
<td>required</td>
|
658
|
<td>
|
659
|
<div class="annotation">
|
660
|
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
|
661
|
<tr>
|
662
|
<td width="100%"><pre><span class="tT">Type of the information we can find inside this</span><span class="tI">
|
663
|
</span><span class="tT">element. The attribute</span><span class="tI">
|
664
|
</span><span class="tT">"name" provides a human-readable label of this very same information.</span></pre></td>
|
665
|
</tr>
|
666
|
</table>
|
667
|
</div>
|
668
|
</td>
|
669
|
</tr>
|
670
|
</table>
|
671
|
</div>
|
672
|
</td>
|
673
|
</tr>
|
674
|
<tr>
|
675
|
<td class="firstColumn">
|
676
|
<div class="floatLeft"><b>Source</b></div>
|
677
|
<div class="floatRight"><input id="button_source_entity_extraInfo" type="image" src="img/btM.gif" value="-" onclick="switchState('source_entity_extraInfo');" class="control" /></div>
|
678
|
</td>
|
679
|
<td>
|
680
|
<div id="source_entity_extraInfo" style="display:block">
|
681
|
<table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" class="preWrapContainer">
|
682
|
<tr>
|
683
|
<td width="100%"><pre><span class="tEl"><xs:element</span><span class="tAN"> name=</span><span class="tAV">"extraInfo"</span><span class="tAN"> type=</span><span class="tAV">"extraInfoType"</span><span class="tAN"> maxOccurs=</span><span class="tAV">"unbounded"</span><span class="tAN"> minOccurs=</span><span class="tAV">"0"</span><span class="tEl">></span><span class="tI">
|
684
|
</span><span class="tEl"><xs:annotation</span><span class="tEl">></span><span class="tI">
|
685
|
</span><span class="tEl"><xs:documentation</span><span class="tEl">></span><span class="tT" style="white-space:normal">Content-agnostic container for extra information about the current entity. Examples are information about statistics and citations. The values inside this field can be any well-formed XML.</span><span class="tEl"></xs:documentation></span><span class="tI">
|
686
|
</span><span class="tEl"></xs:annotation></span><span class="tI">
|
687
|
</span><span class="tEl"></xs:element></span></pre></td>
|
688
|
</tr>
|
689
|
</table>
|
690
|
</div>
|
691
|
</td>
|
692
|
</tr>
|
693
|
<tr>
|
694
|
<td class="firstColumn"><b>Schema location</b></td>
|
695
|
<td>https://www.openaire.eu/schema/latest/oaf.xsd</td>
|
696
|
</tr>
|
697
|
</tbody>
|
698
|
</table>
|
699
|
</td>
|
700
|
<td class="rt_lineRight"></td>
|
701
|
</tr>
|
702
|
<tr>
|
703
|
<td class="rt_cornerBottomLeft"></td>
|
704
|
<td class="rt_lineBottom"></td>
|
705
|
<td class="rt_cornerBottomRight"></td>
|
706
|
</tr>
|
707
|
</table>
|
708
|
<div class="footer">
|
709
|
<hr />
|
710
|
<div align="center">XML Schema documentation generated by <a href="http://www.oxygenxml.com" target="_parent"><span class="oXygenLogo"><span class="redX"><</span>o<span class="redX">X</span>ygen<span class="redX">/></span></span></a><sup>®</sup> XML Editor.
|
711
|
</div>
|
712
|
</div><script type="text/javascript">
|
713
|
<!--
|
714
|
// The namespace is the selected option in the TOC combo.
|
715
|
|
716
|
// Floats the toolbar.
|
717
|
var globalControls = getElementObject("global_controls");
|
718
|
|
719
|
if(globalControls != null){
|
720
|
var browser=navigator.appName;
|
721
|
var version = parseFloat(navigator.appVersion.split('MSIE')[1]);
|
722
|
|
723
|
var IE6 = false;
|
724
|
if ((browser=="Microsoft Internet Explorer") && (version < 7)){
|
725
|
IE6 = true;
|
726
|
}
|
727
|
|
728
|
//alert (IE6 + " |V| " + version);
|
729
|
|
730
|
if(IE6){
|
731
|
// On IE 6 the 'fixed' property is not supported. We must use javascript.
|
732
|
globalControls.style.position='absolute';
|
733
|
// The global controls will do not exist in the TOC frame, when chunking.
|
734
|
findAndFloat("global_controls", 225, 30);
|
735
|
} else {
|
736
|
globalControls.style.position='fixed';
|
737
|
}
|
738
|
|
739
|
globalControls.style.right='0';
|
740
|
}
|
741
|
--></script></body>
|
742
|
</html>
|