devices.xsd 719 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  3. <xsd:simpleType name="hex16_t">
  4. <xsd:restriction base="xsd:string">
  5. <xsd:pattern value="([a-fA-F0-9]){4}"/>
  6. </xsd:restriction>
  7. </xsd:simpleType>
  8. <xsd:complexType name="device_t">
  9. <xsd:attribute name="vendor" type="hex16_t" />
  10. <xsd:attribute name="device" type="hex16_t" />
  11. <xsd:attribute name="model" type="xsd:string" />
  12. </xsd:complexType>
  13. <xsd:element name="devices">
  14. <xsd:complexType>
  15. <xsd:sequence>
  16. <xsd:element name="device" type="device_t" minOccurs="0" maxOccurs="unbounded" />
  17. </xsd:sequence>
  18. </xsd:complexType>
  19. </xsd:element>
  20. </xsd:schema>