1
我必須做一個簡單的元素,可以是一個整數或日期。我必須使用的元素是score
。XSD中簡單類型的聯合?
我看了幾個鏈接,但我不太明白。
如:how to define xsd element with multiple option?
https://www.w3schools.com/xml/schema_simple.asp
我必須做一個簡單的元素,可以是一個整數或日期。我必須使用的元素是score
。XSD中簡單類型的聯合?
我看了幾個鏈接,但我不太明白。
如:how to define xsd element with multiple option?
https://www.w3schools.com/xml/schema_simple.asp
使用xsd:union
創建新型的由工會的其他xs:integer
和xs:date
:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="score">
<xs:simpleType>
<xs:union memberTypes="xs:integer xs:date"/>
</xs:simpleType>
</xs:element>
</xs:schema>