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" 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-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>
|
278
|
<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>
|
279
|
<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>
|
280
|
<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>
|
281
|
<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>
|
282
|
<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>
|
283
|
</div>
|
284
|
</td>
|
285
|
<td class="rt_lineRight"></td>
|
286
|
</tr>
|
287
|
<tr>
|
288
|
<td class="rt_cornerBottomLeft"></td>
|
289
|
<td class="rt_lineBottom"></td>
|
290
|
<td class="rt_cornerBottomRight"></td>
|
291
|
</tr>
|
292
|
</table>
|
293
|
</div>
|
294
|
<div class="horizontalLayout">
|
295
|
<table class="rt">
|
296
|
<tr>
|
297
|
<td class="rt_cornerTopLeft"></td>
|
298
|
<td class="rt_lineTop"></td>
|
299
|
<td class="rt_cornerTopRight"></td>
|
300
|
</tr>
|
301
|
<tr>
|
302
|
<td class="rt_lineLeft"></td>
|
303
|
<td class="rt_content">
|
304
|
<div class="componentGroupTitle">Complex Types
|
305
|
|
306
|
</div>
|
307
|
<div id="boxIdNamespace1Complex_Type" style="display:block">
|
308
|
<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>
|
309
|
<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>
|
310
|
<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>
|
311
|
<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>
|
312
|
<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>
|
313
|
<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>
|
314
|
<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>
|
315
|
<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>
|
316
|
<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>
|
317
|
<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>
|
318
|
<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>
|
319
|
<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>
|
320
|
<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>
|
321
|
<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>
|
322
|
<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>
|
323
|
<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>
|
324
|
<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>
|
325
|
<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>
|
326
|
<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>
|
327
|
<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>
|
328
|
<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>
|
329
|
</div>
|
330
|
</td>
|
331
|
<td class="rt_lineRight"></td>
|
332
|
</tr>
|
333
|
<tr>
|
334
|
<td class="rt_cornerBottomLeft"></td>
|
335
|
<td class="rt_lineBottom"></td>
|
336
|
<td class="rt_cornerBottomRight"></td>
|
337
|
</tr>
|
338
|
</table>
|
339
|
</div>
|
340
|
<div class="horizontalLayout">
|
341
|
<table class="rt">
|
342
|
<tr>
|
343
|
<td class="rt_cornerTopLeft"></td>
|
344
|
<td class="rt_lineTop"></td>
|
345
|
<td class="rt_cornerTopRight"></td>
|
346
|
</tr>
|
347
|
<tr>
|
348
|
<td class="rt_lineLeft"></td>
|
349
|
<td class="rt_content">
|
350
|
<div class="componentGroupTitle">Attribute Groups
|
351
|
|
352
|
</div>
|
353
|
<div id="boxIdNamespace1Attribute_Group" style="display:block">
|
354
|
<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>
|
355
|
<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>
|
356
|
</div>
|
357
|
</td>
|
358
|
<td class="rt_lineRight"></td>
|
359
|
</tr>
|
360
|
<tr>
|
361
|
<td class="rt_cornerBottomLeft"></td>
|
362
|
<td class="rt_lineBottom"></td>
|
363
|
<td class="rt_cornerBottomRight"></td>
|
364
|
</tr>
|
365
|
</table>
|
366
|
</div>
|
367
|
<div style="clear:left"></div>
|
368
|
</div>
|
369
|
</div>
|
370
|
<div class="level2">
|
371
|
<p><input id="button_boxIdNamespace2" type="image" value="-" src="img/btM.gif" onclick="switchState('boxIdNamespace2');" class="control" /><span class="indexGroupTitle">No namespace</span></p>
|
372
|
<div id="boxIdNamespace2" style="display:block">
|
373
|
<div class="horizontalLayout">
|
374
|
<table class="rt">
|
375
|
<tr>
|
376
|
<td class="rt_cornerTopLeft"></td>
|
377
|
<td class="rt_lineTop"></td>
|
378
|
<td class="rt_cornerTopRight"></td>
|
379
|
</tr>
|
380
|
<tr>
|
381
|
<td class="rt_lineLeft"></td>
|
382
|
<td class="rt_content">
|
383
|
<div class="componentGroupTitle">Elements
|
384
|
|
385
|
</div>
|
386
|
<div id="boxIdNamespace2Element" style="display:block">
|
387
|
<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>
|
388
|
<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>
|
389
|
<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>
|
390
|
<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>
|
391
|
<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>
|
392
|
<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>
|
393
|
<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>
|
394
|
<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>
|
395
|
<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>
|
396
|
<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>
|
397
|
<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>
|
398
|
<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>
|
399
|
<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>
|
400
|
<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>
|
401
|
<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>
|
402
|
<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>
|
403
|
<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>
|
404
|
<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>
|
405
|
<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>
|
406
|
<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>
|
407
|
<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>
|
408
|
<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>
|
409
|
<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>
|
410
|
<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>
|
411
|
<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>
|
412
|
<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>
|
413
|
<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>
|
414
|
<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>
|
415
|
<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>
|
416
|
<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>
|
417
|
<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>
|
418
|
<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>
|
419
|
<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>
|
420
|
<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>
|
421
|
<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>
|
422
|
<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>
|
423
|
<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>
|
424
|
<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>
|
425
|
<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>
|
426
|
<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>
|
427
|
<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>
|
428
|
<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>
|
429
|
<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>
|
430
|
<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>
|
431
|
<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>
|
432
|
<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>
|
433
|
<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>
|
434
|
<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>
|
435
|
<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>
|
436
|
<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>
|
437
|
<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>
|
438
|
<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>
|
439
|
<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>
|
440
|
<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>
|
441
|
<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>
|
442
|
<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>
|
443
|
<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>
|
444
|
<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>
|
445
|
<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>
|
446
|
<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>
|
447
|
<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>
|
448
|
<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>
|
449
|
<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>
|
450
|
<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>
|
451
|
<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>
|
452
|
<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>
|
453
|
<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>
|
454
|
<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>
|
455
|
<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>
|
456
|
<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>
|
457
|
<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>
|
458
|
<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>
|
459
|
<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>
|
460
|
<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>
|
461
|
<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>
|
462
|
<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>
|
463
|
<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>
|
464
|
<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>
|
465
|
<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>
|
466
|
<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>
|
467
|
<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>
|
468
|
<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>
|
469
|
<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>
|
470
|
<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>
|
471
|
<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>
|
472
|
<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>
|
473
|
<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>
|
474
|
<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>
|
475
|
<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>
|
476
|
<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>
|
477
|
<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>
|
478
|
<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>
|
479
|
<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>
|
480
|
<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>
|
481
|
<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>
|
482
|
<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>
|
483
|
<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>
|
484
|
<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>
|
485
|
<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>
|
486
|
<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>
|
487
|
<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>
|
488
|
<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>
|
489
|
<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>
|
490
|
<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>
|
491
|
<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>
|
492
|
<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>
|
493
|
<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>
|
494
|
<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>
|
495
|
<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>
|
496
|
<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>
|
497
|
<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>
|
498
|
<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>
|
499
|
<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>
|
500
|
<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>
|
501
|
<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>
|
502
|
<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>
|
503
|
<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>
|
504
|
<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>
|
505
|
<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>
|
506
|
<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>
|
507
|
<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>
|
508
|
<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>
|
509
|
<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>
|
510
|
<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>
|
511
|
<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>
|
512
|
<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>
|
513
|
<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>
|
514
|
<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>
|
515
|
<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>
|
516
|
<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>
|
517
|
<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>
|
518
|
<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>
|
519
|
<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>
|
520
|
<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>
|
521
|
<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>
|
522
|
<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>
|
523
|
<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>
|
524
|
<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>
|
525
|
<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>
|
526
|
<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>
|
527
|
<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>
|
528
|
<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>
|
529
|
<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>
|
530
|
<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>
|
531
|
<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>
|
532
|
<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>
|
533
|
<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>
|
534
|
<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>
|
535
|
<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>
|
536
|
<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>
|
537
|
<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>
|
538
|
<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>
|
539
|
<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>
|
540
|
<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>
|
541
|
<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>
|
542
|
<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>
|
543
|
<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>
|
544
|
<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>
|
545
|
<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>
|
546
|
<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>
|
547
|
<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>
|
548
|
<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>
|
549
|
<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>
|
550
|
<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>
|
551
|
<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>
|
552
|
<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>
|
553
|
<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>
|
554
|
<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>
|
555
|
<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>
|
556
|
<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>
|
557
|
<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>
|
558
|
<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>
|
559
|
<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>
|
560
|
<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>
|
561
|
<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>
|
562
|
<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>
|
563
|
<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>
|
564
|
<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>
|
565
|
<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>
|
566
|
<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>
|
567
|
</div>
|
568
|
</td>
|
569
|
<td class="rt_lineRight"></td>
|
570
|
</tr>
|
571
|
<tr>
|
572
|
<td class="rt_cornerBottomLeft"></td>
|
573
|
<td class="rt_lineBottom"></td>
|
574
|
<td class="rt_cornerBottomRight"></td>
|
575
|
</tr>
|
576
|
</table>
|
577
|
</div>
|
578
|
<div class="horizontalLayout">
|
579
|
<table class="rt">
|
580
|
<tr>
|
581
|
<td class="rt_cornerTopLeft"></td>
|
582
|
<td class="rt_lineTop"></td>
|
583
|
<td class="rt_cornerTopRight"></td>
|
584
|
</tr>
|
585
|
<tr>
|
586
|
<td class="rt_lineLeft"></td>
|
587
|
<td class="rt_content">
|
588
|
<div class="componentGroupTitle">Attributes
|
589
|
|
590
|
</div>
|
591
|
<div id="boxIdNamespace2Attribute" style="display:block">
|
592
|
<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>
|
593
|
<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>
|
594
|
<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>
|
595
|
<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>
|
596
|
<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>
|
597
|
<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>
|
598
|
<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>
|
599
|
<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>
|
600
|
<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>
|
601
|
<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>
|
602
|
<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>
|
603
|
<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>
|
604
|
<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>
|
605
|
<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>
|
606
|
<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>
|
607
|
<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>
|
608
|
<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>
|
609
|
<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>
|
610
|
<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>
|
611
|
<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>
|
612
|
<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>
|
613
|
<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>
|
614
|
<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>
|
615
|
<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>
|
616
|
<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>
|
617
|
<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>
|
618
|
<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>
|
619
|
</div>
|
620
|
</td>
|
621
|
<td class="rt_lineRight"></td>
|
622
|
</tr>
|
623
|
<tr>
|
624
|
<td class="rt_cornerBottomLeft"></td>
|
625
|
<td class="rt_lineBottom"></td>
|
626
|
<td class="rt_cornerBottomRight"></td>
|
627
|
</tr>
|
628
|
</table>
|
629
|
</div>
|
630
|
<div style="clear:left"></div>
|
631
|
</div>
|
632
|
</div>
|
633
|
</div>
|
634
|
</div>
|
635
|
</div>
|
636
|
<div class="footer">
|
637
|
<hr />
|
638
|
<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.
|
639
|
</div>
|
640
|
</div>
|
641
|
</body>
|
642
|
</html>
|