Free cookie consent management tool by TermsFeed Policy Generator

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

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

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

File size: 1.7 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="ProductDescription">
5    <xs:sequence>
6      <xs:element minOccurs="0" name="Name" nillable="true" type="xs:string" />
7      <xs:element minOccurs="0" name="Plugins" nillable="true" type="tns:ArrayOfPluginDescription" />
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="ProductDescription" nillable="true" type="tns:ProductDescription" />
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="PluginDescription">
19    <xs:sequence>
20      <xs:element minOccurs="0" name="Dependencies" nillable="true" type="tns:ArrayOfPluginDescription" />
21      <xs:element minOccurs="0" name="Name" nillable="true" type="xs:string" />
22      <xs:element xmlns:q2="http://schemas.datacontract.org/2004/07/System" minOccurs="0" name="Version" nillable="true" type="q2:Version" />
23    </xs:sequence>
24  </xs:complexType>
25  <xs:element name="PluginDescription" nillable="true" type="tns:PluginDescription" />
26</xs:schema>
Note: See TracBrowser for help on using the repository browser.