forked from hfreye/RLP-XML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbctype.xsd
23 lines (18 loc) · 780 Bytes
/
bctype.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8" ?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://bsbb.eu"
xmlns="http://bsbb.eu"
elementFormDefault="qualified">
<xs:include schemaLocation="http://bsbb.eu/textcontent.xsd"></xs:include>
<xs:include schemaLocation="http://bsbb.eu/c2type.xsd"></xs:include>
<xs:complexType name="bctype">
<xs:sequence>
<xs:element name="id" type="xs:ID"/>
<xs:element name="title" type="stringtype"/>
<xs:element name="bc1" type="textcontent"/>
<xs:element name="bc2" type="textcontent"/>
<xs:element name="bc3" type="c2type"/>
</xs:sequence>
</xs:complexType>
<xs:element name="bc" type="bctype"/>
</xs:schema>