model.xsd 719 B

123456789101112131415
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  3. <xsd:include schemaLocation="types.xsd"/>
  4. <xsd:element name="model">
  5. <xsd:complexType>
  6. <xsd:choice minOccurs="1" maxOccurs="unbounded">
  7. <xsd:element name="bank" type="pcilib_bank_t" minOccurs="0" maxOccurs="unbounded" />
  8. <xsd:element name="transform" type="pcilib_transform_view_t" minOccurs="0" maxOccurs="unbounded" />
  9. <xsd:element name="enum" type="pcilib_enum_view_t" minOccurs="0" maxOccurs="unbounded" />
  10. <xsd:element name="unit" type="pcilib_unit_t" minOccurs="0" maxOccurs="unbounded" />
  11. </xsd:choice>
  12. </xsd:complexType>
  13. </xsd:element>
  14. </xsd:schema>