Skip to content
Snippets Groups Projects
Commit ed9c599f authored by Martin Christoph Hierholzer's avatar Martin Christoph Hierholzer
Browse files

make sure that the elements of the VariableType occur exactly one time

parent c2ea0e8f
No related branches found
No related tags found
No related merge requests found
......@@ -31,9 +31,9 @@
<xsd:complexType name="VariableType">
<xsd:sequence>
<xsd:element name="value_type" type="ValueType"/>
<xsd:element name="direction" type="DirectionType"/>
<xsd:element name="unit" type="xsd:string"/>
<xsd:element name="value_type" type="ValueType" minOccurs="1" maxOccurs="1"/>
<xsd:element name="direction" type="DirectionType" minOccurs="1" maxOccurs="1"/>
<xsd:element name="unit" type="xsd:string" minOccurs="1" maxOccurs="1"/>
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required"/>
</xsd:complexType>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment