-
Notifications
You must be signed in to change notification settings - Fork 1
/
CustomTags.xsd
21 lines (21 loc) · 1008 Bytes
/
CustomTags.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns="http://www.ofdspec.org/2016" xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.ofdspec.org/2016" elementFormDefault="qualified"
attributeFormDefault="unqualified">
<xs:include schemaLocation="Definitions.xsd" />
<xs:element name="CustomTags">
<xs:complexType>
<xs:sequence>
<xs:element name="CustomTag" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="SchemaLoc" type="ST_Loc" minOccurs="0" />
<xs:element name="FileLoc" type="ST_Loc" />
</xs:sequence>
<xs:attribute name="NameSpace" type="xs:string" use="required" />
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>