Merge branch '5.3'
[GitHub/WoltLab/WCF.git] / XSD / styleVariables.xsd
CommitLineData
2301a469
AE
1<?xml version="1.0"?>
2<!-- The file "styleattributes.xsd" is used for xml-files which installs, updates or deletes style attributes. -->
3<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.woltlab.com" targetNamespace="http://www.woltlab.com" elementFormDefault="qualified">
4 <!-- include types -->
5 <xs:include schemaLocation="types.xsd" />
6
7 <!-- Represents the variables-node. -->
8 <xs:complexType name="variables">
9 <xs:sequence>
10 <xs:element name="variable" type="variable" minOccurs="0" maxOccurs="unbounded" />
11 </xs:sequence>
12 </xs:complexType>
13
14 <!-- Represents a style variable value. -->
15 <xs:complexType name="variable">
16 <xs:attribute name="name" type="woltlab_varchar" use="required" />
17 </xs:complexType>
18</xs:schema>