class_properties_extended_metadata.xsd 660 B

123456789101112131415161718
  1. <schema targetNamespace="urn:wst-test"
  2. xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  3. xmlns:tns="urn:wst-test"
  4. xmlns:ns3="uri-4"
  5. xmlns:ns4="uri-5"
  6. >
  7. <xsd:complexType name="TClassSampleType">
  8. <xsd:sequence>
  9. <xsd:element name="intField" type="xsd:int" ns3:a="1210" ns3:b="ns4:xx"/>
  10. <xsd:element name="strField" type="xsd:string" default="azerty" ns3:a="xsd:int"/>
  11. <xsd:element name="floatField" type="xsd:float"/>
  12. </xsd:sequence>
  13. <xsd:attribute name="strAtt" type="xsd:string" default="attribute azerty" use="required" ns3:a="optional"/>
  14. <xsd:attribute name="intAtt" type="xsd:int" use="required"/>
  15. </xsd:complexType>
  16. </schema>