1
屬性我有以下XML可能性:XML/XSD與擴展類型和限制
<Platform>iTunes</Platform>
<Platform IsSubscriptionPlatform="True">Netflix</Platform>
什麼是這個正確的XSD元素?到目前爲止,我有:
<xs:element name="Platform">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="IsSubscriptionPlatform" use="optional">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="(True|False)?" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
我將如何進一步增加平臺的價值的限制可能是「iTunes的」或「Netflix的」。也就是說,在那裏我會補充:
<xs:restriction base="xs:string">
<xs:enumeration value="iTunes" />
<xs:enumeration value="Netflix" />
</xs:restriction>