Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Core/3.2/Authorization/HivePermissionSet.xsd @ 2065

Last change on this file since 2065 was 2065, checked in by mbecirov, 15 years ago

#586: Added authorization components.

File size: 773 bytes
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
3  <xs:element name="Permissions">
4    <xs:complexType>
5      <xs:sequence>
6        <xs:element maxOccurs="unbounded" name="Permission">
7          <xs:complexType>
8            <xs:sequence>
9              <xs:element name="ID" type="xs:string" />
10              <xs:element name="Description" type="xs:string" />
11              <xs:element name="Plugin" type="xs:string" />
12            </xs:sequence>
13            <xs:attribute name="name" type="xs:string" use="required" />
14          </xs:complexType>
15        </xs:element>
16      </xs:sequence>
17    </xs:complexType>
18  </xs:element>
19</xs:schema>
Note: See TracBrowser for help on using the repository browser.