source: DCWoRMS/branches/coolemall/simulator/schemas/resources/DCWormsResSchema.xsd @ 1235

Revision 1235, 23.1 KB checked in by wojtekp, 11 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
3        elementFormDefault="qualified" attributeFormDefault="unqualified">
4               
5        <xs:complexType name="pluginType">
6                <xs:annotation>
7                        <xs:documentation>Base plugin type.
8                        Plugins allow configuring and adapting the simulation framework to his/her experiment
9                        starting from modeling job performance, through method of calculating energy estimation up to implementation of scheduling policies
10                        Name of the plugin specifies the JAVA class that implements dedicated interface.</xs:documentation>
11                </xs:annotation>
12                <xs:sequence>
13                        <xs:element name="name" type="xs:string"></xs:element>
14                        <xs:element name="parameter" type="parameterType" minOccurs="0" maxOccurs="unbounded"></xs:element>
15                </xs:sequence>
16        </xs:complexType>
17       
18        <xs:complexType name="timeEstimationPluginType">
19                <xs:annotation>
20                        <xs:documentation>TimeEstimationPlugin derived from pluginType.
21                        Time estimation plugin provides means to include specific application performance models during simulations
22                        and allows introducing specific ways of calculating task execution time.</xs:documentation>
23                </xs:annotation>
24                <xs:complexContent>
25                        <xs:restriction base="pluginType">
26                                <xs:sequence>
27                                        <xs:element name="name" type="xs:string"></xs:element>
28                                        <xs:element name="parameter" type="parameterType" minOccurs="0" maxOccurs="unbounded"></xs:element>
29                                </xs:sequence>
30                        </xs:restriction>
31                </xs:complexContent>   
32        </xs:complexType>
33       
34        <xs:complexType name="resourceType">
35                <xs:annotation>
36                        <xs:documentation>Base resource type.
37                        It allows to define simulation entities like computing resources, devices, schedulers.
38                        Attributes: class - determines the component of the architecture i.e. rack, processor, memory, storage etc.
39                        type - type of resource; for instance, continuous for memory, bandwidth, etc. and discrete for processors
40                        name - unique resource identifier, if not specified it will be generated by the simulator in the following manner: class + "_" + subsequent_natural_number
41                        </xs:documentation>
42                </xs:annotation>
43                <xs:sequence>
44                        <xs:element name="description" type="xs:string" minOccurs="0"></xs:element>
45                </xs:sequence>
46                <xs:attribute name="class" type="xs:string" use="required"/>
47                <xs:attribute name="type" type="xs:string" use="optional"/>
48                <xs:attribute name="name" type="xs:string" use="optional"/>
49        </xs:complexType>
50
51        <xs:complexType name="physicalResourceType">
52                <xs:annotation>
53                        <xs:documentation> ComputingResource derived from resourceType
54                        Computing resource specifies resources that are able to perform computing operations.
55                        From the simulator point of view computing resource is everything that is/contains processing element.
56                        Hence, all entities like core, processor, computing node, as well as those which aggregate them (like shelf, rack, container etc.)
57                        should be define using this type. This way of description provides flexibility in defining system architecture
58                        and allows to build hierarchy of resources that corresponds to real world.
59                        Attributes: groupId - allows to group resources of the given class in the logical structures that can be used during binding them with schedulers
60                        count - defines number of resources of the given class</xs:documentation>
61                </xs:annotation>
62                <xs:complexContent>
63                        <xs:extension base="resourceType">
64                                <xs:attribute name="groupId" type="xs:integer" use="optional"/>                 
65                                <xs:attribute name="count" type="xs:integer" use="optional"/>
66                        </xs:extension>
67                </xs:complexContent>
68        </xs:complexType>
69       
70        <xs:complexType name="computingResourceType">
71                <xs:annotation>
72                        <xs:documentation> ComputingResource derived from physicalResourceType
73                        Computing resource specifies resources that are able to perform computing operations.
74                        From the simulator point of view computing resource is everything that is/contains processing element.
75                        Hence, all entities like core, processor, computing node, as well as those which aggregate them (like shelf, rack, container etc.)
76                        should be define using this type. This way of description provides flexibility in defining system architecture
77                        and allows to build hierarchy of resources that corresponds to real world.
78                        Attributes: groupId - allows to group resources of the given class in the logical structures that can be used during binding them with schedulers
79                        count - defines number of resources of the given class</xs:documentation>
80                </xs:annotation>
81                <xs:complexContent>
82                        <xs:extension base="physicalResourceType">
83                                <xs:sequence>
84                                        <xs:choice>
85                                                <xs:sequence>
86                                                        <xs:element name="location" type="locationType" minOccurs="0" maxOccurs="1"></xs:element>
87                                                        <xs:element name="parameter" type="parameterType" minOccurs="0" maxOccurs="unbounded"></xs:element>
88                                                        <xs:element name="profile" type="profileType" minOccurs="0" maxOccurs="1"></xs:element>
89                                                        <xs:element name="device" type="deviceType" minOccurs="0" maxOccurs="unbounded"></xs:element>
90                                                        <xs:element name="resourceUnit" type="resourceUnitType" minOccurs="0" maxOccurs="unbounded"></xs:element>
91                                                        <xs:element name="computingResource" type="computingResourceType" minOccurs="0" maxOccurs="unbounded"></xs:element>
92                                                </xs:sequence>
93                                                <xs:sequence>
94                                                        <xs:element name="templateId" type="xs:string"/>
95                                                        <xs:element name="location" type="locationType" minOccurs="0" maxOccurs="1"></xs:element>
96                                                        <xs:element name="parameter" type="parameterType" minOccurs="0" maxOccurs="unbounded"></xs:element>
97                                                </xs:sequence>
98                                        </xs:choice>
99                                </xs:sequence>
100                        </xs:extension>
101                </xs:complexContent>
102        </xs:complexType>
103       
104        <xs:complexType name="deviceType">
105                <xs:annotation>
106                        <xs:documentation> Device derived from physicalResourceType</xs:documentation>
107                </xs:annotation>
108                <xs:complexContent>
109                        <xs:extension base="physicalResourceType">
110                                <xs:sequence>
111                                        <xs:choice>
112                                                <xs:sequence>
113                                                        <xs:element name="location" type="locationType" minOccurs="0" maxOccurs="1"></xs:element>
114                                                        <xs:element name="parameter" type="parameterType" minOccurs="0" maxOccurs="unbounded"></xs:element>
115                                                        <xs:element name="profile" type="profileType" minOccurs="0" maxOccurs="1"></xs:element>
116                                                </xs:sequence>
117                                                <xs:sequence>
118                                                        <xs:element name="templateId" type="xs:string"/>
119                                                        <xs:element name="location" type="locationType" minOccurs="0" maxOccurs="1"></xs:element>
120                                                        <xs:element name="parameter" type="parameterType" minOccurs="0" maxOccurs="unbounded"></xs:element>
121                                                </xs:sequence>
122                                        </xs:choice>
123                                </xs:sequence>
124                        </xs:extension>
125                </xs:complexContent>
126        </xs:complexType>
127       
128        <xs:complexType name="computingResourceTemplateType">
129                <xs:annotation>
130                        <xs:documentation>ComputingResourceTemplate derived from resourceType.
131                        It allows user to define model of computing resource component that may constitute other computing resources
132                        Computing resource templates can be then referred in computing resource definition</xs:documentation>
133                </xs:annotation>
134                <xs:complexContent>
135                        <xs:extension base="resourceType">
136                                <xs:sequence>
137                                        <xs:element name="parameter" type="parameterType" minOccurs="0" maxOccurs="unbounded"></xs:element>
138                                        <xs:element name="profile" type="profileType" minOccurs="0" maxOccurs="1"></xs:element>
139                                        <xs:element name="device" type="deviceType" minOccurs="0" maxOccurs="unbounded"></xs:element>
140                                        <xs:element name="resourceUnit" type="resourceUnitType" minOccurs="0" maxOccurs="unbounded"></xs:element>
141                                        <xs:element name="computingResource" type="computingResourceType" minOccurs="0" maxOccurs="unbounded"></xs:element>
142                                </xs:sequence>
143                        </xs:extension>
144                </xs:complexContent>
145        </xs:complexType>
146       
147        <xs:complexType name="deviceTemplateType">
148                <xs:annotation>
149                        <xs:documentation>ComputingResourceTemplate derived from resourceType.
150                        It allows user to define model of computing resource component that may constitute other computing resources
151                        Computing resource templates can be then referred in computing resource definition</xs:documentation>
152                </xs:annotation>
153                <xs:complexContent>
154                        <xs:extension base="resourceType">
155                                <xs:sequence>
156                                        <xs:element name="parameter" type="parameterType" minOccurs="0" maxOccurs="unbounded"></xs:element>
157                                        <xs:element name="profile" type="profileType" minOccurs="0" maxOccurs="1"></xs:element>
158                                </xs:sequence>
159                        </xs:extension>
160                </xs:complexContent>
161        </xs:complexType>
162
163        <xs:complexType name="schedulerType">
164                <xs:annotation>
165                        <xs:documentation>Scheduler derived from resourceType.
166                        It allows to model scheduling entity responsible for managing resources.</xs:documentation>
167                </xs:annotation>
168                <xs:complexContent>
169                        <xs:extension base="resourceType">
170                                <xs:sequence>
171                                        <xs:element name="schedulingPlugin" type="schedulingPluginType" minOccurs="0" maxOccurs="1"></xs:element>
172                                        <xs:element name="queues" type="queueListType" minOccurs="0"></xs:element>
173                                        <xs:choice minOccurs="1" maxOccurs="unbounded">
174                                                <xs:element name="scheduler" type="schedulerType"></xs:element>
175                                                <xs:element name="managedComputingResources" type="managedComputingResourcesType"></xs:element>
176                                        </xs:choice>
177                                        <xs:element name="parameter" type="parameterType" minOccurs="0" maxOccurs="unbounded"></xs:element>
178                                </xs:sequence>
179                        </xs:extension>
180                </xs:complexContent>
181        </xs:complexType>
182       
183        <xs:complexType name="schedulingPluginType">
184                <xs:annotation>
185                        <xs:documentation>SchedulingPlugin derived from pluginType.
186                        Scheduling plugins allow plugging scheduling algorithms into the simulated environment.
187                        Elements: frequency - is used to enable scheduling periodically; it specifies the time interval (in seconds by default) between subsequent scheduling invocations
188                        </xs:documentation>
189                </xs:annotation>
190                <xs:complexContent>
191                        <xs:extension base="pluginType">
192                                <xs:sequence>
193                                        <xs:element name="frequency" type="doubleValueWithUnitType" minOccurs="0" maxOccurs="1"></xs:element>
194                                </xs:sequence>
195                        </xs:extension>
196                </xs:complexContent>
197        </xs:complexType>
198       
199        <xs:complexType name="resourceUnitType">
200                <xs:annotation>
201                        <xs:documentation>Resource unit is used to define non-computing resource like memory, storage etc.
202                        Elements: amount - represents concrete amount (values) of specific resource unit</xs:documentation>
203                </xs:annotation>
204                <xs:complexContent>
205                        <xs:extension base="resourceType">
206                                <xs:sequence>
207                                        <xs:element name="amount" type="doubleValueWithUnitType"/>
208                                        <xs:element name="parameter" type="parameterType" minOccurs="0" maxOccurs="unbounded"></xs:element>
209                                </xs:sequence>
210                        </xs:extension>
211                </xs:complexContent>
212        </xs:complexType>
213
214        <xs:complexType name="doubleValueWithUnitType">
215                <xs:annotation>
216                        <xs:documentation>DoubleValueWitUnit derived from double. Allows providing units in which the given value is expressed
217                        Attributes: unit - indicates appropriate units, for instance: seconds, watts, bytes etc. </xs:documentation>
218                </xs:annotation>
219                <xs:simpleContent>
220                        <xs:extension base="xs:double">
221                                <xs:attribute name="unit" type="xs:string" use="optional"/>
222                        </xs:extension>
223                </xs:simpleContent>     
224        </xs:complexType>
225       
226        <xs:complexType name="stringValueWithUnitType">
227                <xs:annotation>
228                        <xs:documentation>StringValueWitUnit derived from string. Allows providing units in which the given value is expressed
229                        Attributes: unit - indicates appropriate units. </xs:documentation>
230                </xs:annotation>
231                <xs:simpleContent>
232                        <xs:extension base="xs:string">
233                                <xs:attribute name="unit" type="xs:string" use="optional"/>
234                        </xs:extension>
235                </xs:simpleContent>     
236        </xs:complexType>
237       
238        <xs:complexType name="queueListType">
239                <xs:annotation>
240                        <xs:documentation>Profile acts as a container for resource profiles: power and air throughput</xs:documentation>
241                </xs:annotation>
242                <xs:sequence>
243                        <xs:element name="queue" type="queueType" minOccurs="1" maxOccurs="unbounded"></xs:element>
244                </xs:sequence>
245        </xs:complexType>
246       
247        <xs:complexType name="queueType">
248                <xs:annotation>
249                        <xs:documentation>Profile acts as a container for resource profiles: power and air throughput</xs:documentation>
250                </xs:annotation>
251                <xs:sequence>
252                        <xs:element name="name" type="xs:string"></xs:element>
253                        <xs:element name="priority" type="xs:int" minOccurs="0"></xs:element>
254                        <xs:element name="reservation" type="xs:boolean" minOccurs="0" ></xs:element>
255                </xs:sequence>
256        </xs:complexType>
257       
258        <xs:complexType name="managedComputingResourcesType">
259                <xs:annotation>
260                        <xs:documentation>ManagedComputingResource type specifies computing resources controlled by scheduler.
261                        They can be provided either by listing their names or listing the group ids which they belong to.
262                        Attributes: include - specifies whether the given resource layer (listed resources) can be allocated by the scheduler
263                        In other words, false (default) value indicates that scheduler maneges only the subcomponents of the listed resources;
264                        true value determines that also listed resources will be under the control of the defined scheduler</xs:documentation>
265                </xs:annotation>
266                <xs:choice>
267                        <xs:element name="resourceName" type="xs:string" minOccurs="1" maxOccurs="unbounded"></xs:element>
268                        <xs:element name="resourceGroupId" type="xs:string" minOccurs="1" maxOccurs="unbounded"></xs:element>
269                </xs:choice>
270                <xs:attribute name="include" type="xs:boolean" default="false"/>
271        </xs:complexType>
272
273        <xs:complexType name="energyEstimationPluginType">
274                <xs:annotation>
275                        <xs:documentation>EnergyEstimationPlugin derived from pluginType.
276                        Energy estimation plugin is used to estimate energy consumption of the given computing resource.
277                        It has access to the detailed resource description including power and air throughput profiles
278                        and application characteristics running on a given resource</xs:documentation>
279                </xs:annotation>
280                <xs:complexContent>
281                        <xs:extension base="pluginType"/>
282                </xs:complexContent>
283        </xs:complexType>
284       
285        <xs:complexType name="profileType">
286                <xs:annotation>
287                        <xs:documentation>Profile acts as a container for resource profiles: power and air throughput</xs:documentation>
288                </xs:annotation>
289                <xs:sequence>
290                        <xs:element name="powerProfile" type="powerProfileType" minOccurs="0"></xs:element>
291                        <xs:element name="airThroughputProfile" type="airThroughputProfileType" minOccurs="0"></xs:element>
292                        <xs:element name="thermalProfile" type="thermalProfileType" minOccurs="0"></xs:element>
293                </xs:sequence>
294        </xs:complexType>
295       
296        <xs:complexType name="powerProfileType">
297                <xs:annotation>
298                        <xs:documentation>Power profile provides energyEstimation plugin, powerStates and other power-related parameters definition</xs:documentation>
299                </xs:annotation>
300                <xs:sequence>
301                        <xs:element name="energyEstimationPlugin" type="energyEstimationPluginType" minOccurs="0"></xs:element>
302                        <xs:element name="powerStates" type="powerStatesListType" minOccurs="0"></xs:element>
303                        <xs:element name="loadPowerUsage" type="loadPowerUsageType" minOccurs="0"></xs:element>                 
304                        <xs:element name="parameter" type="parameterType" minOccurs="0" maxOccurs="unbounded"></xs:element>
305                </xs:sequence>
306        </xs:complexType>
307       
308        <xs:complexType name="powerStatesListType">
309                <xs:annotation>
310                        <xs:documentation>PowerState type act as a container for power states. It contains energy-related characteristics of the computing resource</xs:documentation>
311                </xs:annotation>
312                <xs:sequence>
313                        <xs:element name="powerState" type="powerStateType" minOccurs="1" maxOccurs="unbounded"></xs:element>
314                </xs:sequence>
315        </xs:complexType>
316       
317        <xs:complexType name="powerStateType">
318                <xs:annotation>
319                        <xs:documentation>Power state defines available (for computing resource) power states.
320                        Elements: name - denotes name of the given power state
321                        powerUsage - defines power consumption in the given state
322                        transition - specifies possible power states transitions from the given power state</xs:documentation>
323                </xs:annotation>
324                <xs:sequence>
325                        <xs:element name="name" type="xs:string"></xs:element>
326                        <xs:element name="powerUsage" type="doubleValueWithUnitType" minOccurs="0" maxOccurs="1"></xs:element>
327                        <xs:element name="transition" type="powerStatesTransitionType" minOccurs="0" maxOccurs="unbounded"></xs:element>
328                        <xs:element name="parameter" type="parameterType" minOccurs="0" maxOccurs="unbounded"></xs:element>
329                </xs:sequence>
330        </xs:complexType>
331       
332        <xs:complexType name="powerStatesTransitionType">
333                <xs:annotation>
334                        <xs:documentation>Description of power states transtition
335                        Elements: to - denotes name of target power state
336                        powerUsage - defines transition cost in the form of power consumption
337                        time - specifies transition time</xs:documentation>
338                </xs:annotation>
339                <xs:sequence>
340                        <xs:element name="to" type="xs:string"></xs:element>
341                        <xs:element name="powerUsage" type="doubleValueWithUnitType"></xs:element>
342                        <xs:element name="time" type="doubleValueWithUnitType"></xs:element>
343                        <xs:element name="parameter" type="parameterType" minOccurs="0" maxOccurs="unbounded"></xs:element>
344                </xs:sequence>
345        </xs:complexType>
346               
347        <xs:complexType name="loadPowerUsageType">
348                <xs:sequence>
349                        <xs:element name="load" type="xs:float" maxOccurs="1" minOccurs="1"></xs:element>
350                        <xs:element name="powerUsage" type="xs:float" maxOccurs="1" minOccurs="1"></xs:element>
351                </xs:sequence>
352        </xs:complexType>
353       
354        <xs:complexType name="airThroughputEstimationPluginType">
355                <xs:annotation>
356                        <xs:documentation>AirThroughputEstimationPlugin derived from pluginType.
357                        Air Throughput plugin is used to estimate air flow value based on the defined air throughput states</xs:documentation>
358                </xs:annotation>
359                <xs:complexContent>
360                        <xs:extension base="pluginType"/>
361                </xs:complexContent>
362        </xs:complexType>
363       
364        <xs:complexType name="airThroughputProfileType">
365                <xs:annotation>
366                        <xs:documentation>AirThrouhputProfile provides airThroughputEstimation plugin, airThroughputStates and other airThroughput-related parameters definition</xs:documentation>
367                </xs:annotation>
368                <xs:sequence>
369                        <xs:element name="airThroughputEstimationPlugin" type="airThroughputEstimationPluginType" minOccurs="0"></xs:element>
370                        <xs:element name="airThroughputStates" type="airThroughputStatesListType" minOccurs="0"></xs:element>
371                        <xs:element name="parameter" type="parameterType" minOccurs="0" maxOccurs="unbounded"></xs:element>
372                </xs:sequence>
373        </xs:complexType>
374       
375        <xs:complexType name="airThroughputStatesListType">
376                <xs:annotation>
377                        <xs:documentation>AirThroughputStates type act as a container for air throughput states.</xs:documentation>
378                </xs:annotation>
379                <xs:sequence>
380                        <xs:element name="airThroughputState" type="airThroughputStateType" minOccurs="1" maxOccurs="unbounded"></xs:element>
381                </xs:sequence>
382                <xs:attribute name="name" type="xs:string" use="optional"/>
383        </xs:complexType>
384       
385        <xs:complexType name="airThroughputStateType">
386                <xs:annotation>
387                        <xs:documentation>Air throughput state provides means to define air flow level.
388                        It can represent, for instance, a fan working state</xs:documentation>
389                </xs:annotation>
390                <xs:sequence>
391                        <xs:element name="name" type="xs:string"></xs:element>
392                        <xs:element name="value" type="doubleValueWithUnitType"></xs:element>
393                        <xs:element name="powerUsage" type="doubleValueWithUnitType" minOccurs="0"></xs:element>
394                        <xs:element name="parameter" type="parameterType" minOccurs="0" maxOccurs="unbounded"></xs:element>
395                </xs:sequence>
396        </xs:complexType>
397       
398        <xs:complexType name="temperatureEstimationPluginType">
399                <xs:annotation>
400                        <xs:documentation>TemperatureEstimationPlugin derived from pluginType.
401                        Temperature plugin is used to estimate temperature based on the defined resource characteristics</xs:documentation>
402                </xs:annotation>
403                <xs:complexContent>
404                        <xs:extension base="pluginType"/>
405                </xs:complexContent>
406        </xs:complexType>
407       
408        <xs:complexType name="thermalProfileType">
409                <xs:annotation>
410                        <xs:documentation>ThermalProfile provides temperatureEstimation plugin, and other thermal-related parameters definition</xs:documentation>
411                </xs:annotation>
412                <xs:sequence>
413                        <xs:element name="temperatureEstimationPlugin" type="temperatureEstimationPluginType" minOccurs="0"></xs:element>
414                        <xs:element name="parameter" type="parameterType" minOccurs="0" maxOccurs="unbounded"></xs:element>
415                </xs:sequence>
416        </xs:complexType>
417       
418        <xs:complexType name="locationType">
419                <xs:annotation>
420                        <xs:documentation>The location type describes placement of the computing resource using 3 coordinates</xs:documentation>
421                </xs:annotation>
422                <xs:sequence>
423                        <xs:element name="horizontal" type="xs:long"/>
424                        <xs:element name="vertical" type="xs:long"/>
425                        <xs:element name="depth" type="xs:long"/>
426                        <xs:element name="parameter" type="parameterType" minOccurs="0" maxOccurs="unbounded"></xs:element>
427                </xs:sequence>
428        </xs:complexType>
429       
430        <xs:complexType name="parameterType">
431                <xs:annotation>
432                        <xs:documentation>Parameter of resource. Allows defining additional resource parameters.
433                        Contains a list of parameter values or a list of key-value pairs.
434                        Attribute : name - denotes parameter name</xs:documentation>
435                </xs:annotation>
436                <xs:choice>
437                        <xs:element name="value" type="stringValueWithUnitType" minOccurs="0" maxOccurs="unbounded"/>
438                        <xs:sequence>
439                                <xs:element name="property" minOccurs="0" maxOccurs="unbounded">
440                                        <xs:complexType>
441                                                <xs:annotation>
442                                                        <xs:documentation>Property of parameter. Allows defining additional properties of parameter as a list of values.
443                                                        Attribute : name - denotes property name</xs:documentation>
444                                                </xs:annotation>
445                                                <xs:sequence>
446                                                        <xs:element name="value" type="stringValueWithUnitType" minOccurs="0" maxOccurs="unbounded"/>
447                                                </xs:sequence>
448                                                <xs:attribute name="name" type="xs:string" use="required"/>
449                                        </xs:complexType>
450                                </xs:element>
451                        </xs:sequence>
452                </xs:choice>
453                <xs:attribute name="name" type="xs:string" use="required"/>
454        </xs:complexType>
455       
456        <xs:element name="environment">
457                <xs:annotation>
458                        <xs:documentation>Schema describing simulation environment</xs:documentation>
459                </xs:annotation>
460                <xs:complexType>
461                        <xs:sequence>
462                                <xs:element name="description" type="xs:string" minOccurs="0" ></xs:element>
463                                <xs:element name="timeEstimationPlugin" type="timeEstimationPluginType" minOccurs="0" maxOccurs="1"></xs:element>
464                                <xs:element name="resources">
465                                        <xs:annotation>
466                                                <xs:documentation>Description of resources</xs:documentation>
467                                        </xs:annotation>
468                                        <xs:complexType>
469                                                <xs:sequence>
470                                                        <xs:element name="description" type="xs:string" minOccurs="0" ></xs:element>
471                                                        <xs:element name="computingResource" type="computingResourceType" maxOccurs="unbounded"/>
472                                                        <xs:element name="scheduler" type="schedulerType" maxOccurs="unbounded"/>
473                                                </xs:sequence>
474                                                <xs:attribute name="mode" type="xs:string" default="Standard"/>
475                                        </xs:complexType>
476                                </xs:element>
477                                <xs:element name="templates" minOccurs="0">
478                                        <xs:annotation>
479                                                <xs:documentation>Definition of computing resource templates that can/will be used in resource description section </xs:documentation>
480                                        </xs:annotation>
481                                        <xs:complexType>
482                                                <xs:sequence>
483                                                        <xs:element name="description" type="xs:string" minOccurs="0" ></xs:element>
484                                                        <xs:element name="computingResourceTemplate" type="computingResourceTemplateType" minOccurs="0" maxOccurs="unbounded"/>
485                                                        <xs:element name="deviceTemplate" type="deviceTemplateType" minOccurs="0" maxOccurs="unbounded"/>
486                                                </xs:sequence>
487                                        </xs:complexType>
488                                </xs:element>
489                        </xs:sequence>
490                </xs:complexType>
491        </xs:element>
492
493</xs:schema>
Note: See TracBrowser for help on using the repository browser.