xsd:限制属性大于其他属性(相对验证)

时间:2016-06-07 06:57:59

标签: xml xsd

我正在根据伴侣属性valid-till搜索限制属性valid-from输入的方法。

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> 
   <xs:complexType name="Data">
      <xs:sequence>
        <xs:element name="material" type="Material" maxOccurs="unbounded" />
      </xs:sequence>
      <xs:attribute name="id" type="xs:ID" />
      <xs:attribute name="valid-from" type="xs:dateTime" />
      <xs:attribute name="valid-till" type="xs:dateTime" />
   </xs:complexType>
</xs:schema>

我如何实现这一目标?