]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/examples/permacrud.xsd
xsd update for all_perms flag
[Evergreen.git] / Open-ILS / examples / permacrud.xsd
1 <?xml version="1.0" encoding="UTF-8" ?>
2
3 <!--
4
5 Copyright (C) 2007 Laurentian University
6 Dan Scott <dscott@laurentian.ca>
7
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation; either version 2
11 of the License, or (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
21
22 -->
23
24 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
25  xmlns="http://open-ils.org/spec/opensrf/IDL/permacrud/v1"
26  targetNamespace="http://open-ils.org/spec/opensrf/IDL/permacrud/v1"
27  elementFormDefault="unqualified"
28  attributeFormDefault="unqualified"
29 >
30
31 <xs:attribute name="permsission" type="xs:string"/>
32 <xs:attribute name="context_field" type="xs:string"/>
33
34 <xs:element name="context" nillable="true">
35  <xs:complexType>
36   <xs:attribute name="link"/>
37   <xs:attribute name="field"/>
38   <xs:attribute name="global_requried"/>
39  </xs:complexType>
40 </xs:element>
41
42 <xs:element name="create" nillable="true">
43  <xs:complexType>
44   <xs:sequence>
45    <xs:element ref="context" minOccurs="0" maxOccurs="1"/>
46   </xs:sequence>
47   <xs:attribute name="permission" use="required"/>
48   <xs:attribute name="context_field"/>
49  </xs:complexType>
50  <xs:attribute name="all_perms"/>
51  <xs:attribute name="global_requried"/>
52 </xs:element>
53
54 <xs:element name="retrieve" nillable="true">
55  <xs:complexType>
56   <xs:sequence>
57    <xs:element ref="context" minOccurs="0" maxOccurs="1"/>
58   </xs:sequence>
59   <xs:attribute name="permission"/>
60   <xs:attribute name="context_field"/>
61  </xs:complexType>
62  <xs:attribute name="all_perms"/>
63  <xs:attribute name="global_requried"/>
64 </xs:element>
65
66 <xs:element name="update" nillable="true">
67  <xs:complexType>
68   <xs:sequence>
69    <xs:element ref="context" minOccurs="0" maxOccurs="1"/>
70   </xs:sequence>
71   <xs:attribute name="permission" use="required"/>
72   <xs:attribute name="context_field"/>
73  </xs:complexType>
74  <xs:attribute name="all_perms"/>
75  <xs:attribute name="global_requried"/>
76 </xs:element>
77
78 <xs:element name="delete" nillable="true">
79  <xs:complexType>
80   <xs:sequence>
81    <xs:element ref="context" minOccurs="0" maxOccurs="1"/>
82   </xs:sequence>
83   <xs:attribute name="permission" use="required"/>
84   <xs:attribute name="context_field"/>
85  </xs:complexType>
86  <xs:attribute name="all_perms"/>
87  <xs:attribute name="global_requried"/>
88 </xs:element>
89
90 <xs:element name="actions">
91  <xs:complexType>
92   <xs:sequence>
93    <xs:element ref="create" minOccurs="0" maxOccurs="1"/>
94    <xs:element ref="retrieve" minOccurs="0" maxOccurs="1"/>
95    <xs:element ref="update" minOccurs="0" maxOccurs="1"/>
96    <xs:element ref="delete" minOccurs="0" maxOccurs="1"/>
97   </xs:sequence>
98  </xs:complexType>
99 </xs:element>
100
101 <xs:element name="permacrud">
102  <xs:complexType>
103   <xs:sequence>
104    <xs:element ref="actions" minOccurs="1" maxOccurs="1"/>
105   </xs:sequence>
106  </xs:complexType>
107 </xs:element>
108
109 </xs:schema>