mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-11 07:32:11 +01:00
31 lines
1.3 KiB
XML
31 lines
1.3 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<!-- Created with Liquid Technologies Online Tools 1.0 (https://www.liquid-technologies.com) -->
|
||
|
<!-- To regenerate the NuvoMenu DTO from the XSD, use the following command: -->
|
||
|
<!-- xjc -d ../src/main/java -p org.openhab.binding.nuvo.internal.dto NuvoMenu.xsd -->
|
||
|
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" jaxb:version="2.1">
|
||
|
<xs:element name="menu">
|
||
|
<xs:annotation>
|
||
|
<xs:appinfo>
|
||
|
<jaxb:class name="NuvoMenu"/>
|
||
|
</xs:appinfo>
|
||
|
</xs:annotation>
|
||
|
<xs:complexType>
|
||
|
<xs:sequence>
|
||
|
<xs:element maxOccurs="unbounded" name="source">
|
||
|
<xs:complexType>
|
||
|
<xs:sequence minOccurs="0">
|
||
|
<xs:element maxOccurs="unbounded" name="topmenu">
|
||
|
<xs:complexType>
|
||
|
<xs:sequence minOccurs="0">
|
||
|
<xs:element maxOccurs="unbounded" name="item" type="xs:string" />
|
||
|
</xs:sequence>
|
||
|
<xs:attribute name="text" type="xs:string" use="required" />
|
||
|
</xs:complexType>
|
||
|
</xs:element>
|
||
|
</xs:sequence>
|
||
|
</xs:complexType>
|
||
|
</xs:element>
|
||
|
</xs:sequence>
|
||
|
</xs:complexType>
|
||
|
</xs:element>
|
||
|
</xs:schema>
|