Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DeploymentServer Prototype/HeuristicLab.Services/HeuristicLab.Services.Deployment.Test/Service References/UpdateService/HeuristicLab.Services.Deployment.xsd @ 2804

Last change on this file since 2804 was 2804, checked in by gkronber, 14 years ago

Worked on administration front-end for deployment service. #860 (Deployment server for plugin installation from web locations)

File size: 2.1 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.Deployment" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.Deployment" xmlns:xs="http://www.w3.org/2001/XMLSchema">
3  <xs:import namespace="http://schemas.datacontract.org/2004/07/System" />
4  <xs:complexType name="PluginDescription">
5    <xs:sequence>
6      <xs:element minOccurs="0" name="Dependencies" nillable="true" type="tns:ArrayOfPluginDescription" />
7      <xs:element minOccurs="0" name="Name" nillable="true" type="xs:string" />
8      <xs:element xmlns:q1="http://schemas.datacontract.org/2004/07/System" minOccurs="0" name="Version" nillable="true" type="q1:Version" />
9    </xs:sequence>
10  </xs:complexType>
11  <xs:element name="PluginDescription" nillable="true" type="tns:PluginDescription" />
12  <xs:complexType name="ArrayOfPluginDescription">
13    <xs:sequence>
14      <xs:element minOccurs="0" maxOccurs="unbounded" name="PluginDescription" nillable="true" type="tns:PluginDescription" />
15    </xs:sequence>
16  </xs:complexType>
17  <xs:element name="ArrayOfPluginDescription" nillable="true" type="tns:ArrayOfPluginDescription" />
18  <xs:complexType name="ArrayOfProductDescription">
19    <xs:sequence>
20      <xs:element minOccurs="0" maxOccurs="unbounded" name="ProductDescription" nillable="true" type="tns:ProductDescription" />
21    </xs:sequence>
22  </xs:complexType>
23  <xs:element name="ArrayOfProductDescription" nillable="true" type="tns:ArrayOfProductDescription" />
24  <xs:complexType name="ProductDescription">
25    <xs:sequence>
26      <xs:element minOccurs="0" name="Name" nillable="true" type="xs:string" />
27      <xs:element minOccurs="0" name="Plugins" nillable="true" type="tns:ArrayOfPluginDescription" />
28      <xs:element xmlns:q2="http://schemas.datacontract.org/2004/07/System" minOccurs="0" name="Version" nillable="true" type="q2:Version" />
29    </xs:sequence>
30  </xs:complexType>
31  <xs:element name="ProductDescription" nillable="true" type="tns:ProductDescription" />
32</xs:schema>
Note: See TracBrowser for help on using the repository browser.