]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/examples/fm_IDL.xsd
adding test result virtual class and fixing cut-n-paste error
[Evergreen.git] / Open-ILS / examples / fm_IDL.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:idl="http://opensrf.org/spec/IDL/base/v1"
26  xmlns:oils_persist="http://open-ils.org/spec/opensrf/IDL/persistence/v1"
27  xmlns:oils_obj="http://open-ils.org/spec/opensrf/IDL/objects/v1"
28  xmlns:reporter="http://open-ils.org/spec/opensrf/IDL/reporter/v1"
29  targetNamespace="http://opensrf.org/spec/IDL/base/v1"
30  elementFormDefault="qualified"
31  attributeFormDefault="unqualified"
32 >
33
34 <xs:import namespace="http://open-ils.org/spec/opensrf/IDL/persistence/v1"
35  schemaLocation="oils_persist.xsd"/>
36
37 <xs:import namespace="http://open-ils.org/spec/opensrf/IDL/objects/v1"
38  schemaLocation="oils_obj.xsd"/>
39
40 <xs:import namespace="http://open-ils.org/spec/opensrf/IDL/reporter/v1"
41  schemaLocation="reporter.xsd"/>
42
43 <!-- define simple elements -->
44 <xs:element name="field" nillable="true">
45  <xs:complexType>
46   <xs:attribute name="name"/>
47   <xs:attribute ref="oils_obj:array_position"/>
48   <xs:attribute ref="oils_persist:i18n"/>
49   <xs:attribute ref="oils_persist:primitive"/>
50   <xs:attribute ref="oils_persist:virtual"/>
51   <xs:attribute ref="reporter:label"/>
52   <xs:attribute ref="reporter:datatype"/>
53   <xs:attribute ref="reporter:selector"/>
54  </xs:complexType>
55 </xs:element>
56
57 <xs:element name="link" nillable="true">
58  <xs:complexType>
59   <xs:attribute name="field" type="xs:string" use="required"/>
60   <xs:attribute name="reltype" type="xs:string" use="required"/>
61   <xs:attribute name="key" type="xs:string" use="required"/>
62   <xs:attribute name="map" type="xs:string" use="required"/>
63   <xs:attribute name="class" type="xs:string" use="required"/>
64   <xs:attribute ref="reporter:label"/>
65  </xs:complexType>
66 </xs:element>
67
68 <xs:element name="fields">
69  <xs:complexType>
70   <xs:sequence>
71    <xs:element ref="idl:field" minOccurs="1" maxOccurs="unbounded"/>
72   </xs:sequence>
73   <xs:attribute ref="oils_persist:primary"/>
74   <xs:attribute ref="oils_persist:sequence"/>
75  </xs:complexType>
76 </xs:element>
77
78 <xs:element name="links">
79  <xs:complexType>
80   <xs:sequence>
81    <xs:element ref="idl:link" minOccurs="0" maxOccurs="unbounded"/>
82   </xs:sequence>
83  </xs:complexType>
84 </xs:element>
85
86 <xs:element name="class">
87  <xs:complexType>
88   <xs:sequence>
89    <xs:element ref="oils_persist:source_definition" minOccurs="0" maxOccurs="unbounded"/>
90    <xs:element ref="idl:fields"/>
91    <xs:element ref="idl:links" minOccurs="0"/>
92   </xs:sequence>
93   <xs:attribute name="id"/>
94   <xs:attribute name="controller"/>
95   <xs:attribute ref="oils_obj:fieldmapper"/>
96   <xs:attribute ref="oils_persist:readonly"/>
97   <xs:attribute ref="oils_persist:tablename"/>
98   <xs:attribute ref="oils_persist:virtual"/>
99   <xs:attribute ref="reporter:core"/>
100   <xs:attribute ref="reporter:label"/>
101  </xs:complexType>
102 </xs:element>
103
104 <xs:element name="IDL">
105  <xs:complexType>
106   <xs:sequence>
107    <xs:element ref="idl:class" minOccurs="1" maxOccurs="unbounded"/>
108   </xs:sequence>
109  </xs:complexType>
110 </xs:element>
111
112 </xs:schema>