2017-07-27 57 views
0

我有一個xsd,它必須防止元素的重複值。我嘗試了各種方法,並失去了爲元素實現唯一約束的問題。xml中的唯一元素值通過xsd

在下面的xml中,我有xyz:間隔具有重複值的元素。 如何避免使用獨特標籤進行復制?

我曾嘗試在下面的XSD中使用獨特的,但無法實現相同。

XSD:

<?xml version="1.0" encoding="utf-8" ?> 
<xs:schema xmlns:xyz="http://www.example.com/schema/public/" attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://www.example.com/schema/public/" version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema"> 
<xs:complexType name="Intervals"> 
    <xs:sequence> 
     <xs:element name="interval" type="xs:int" maxOccurs="unbounded"> 
      <xs:unique name="alias_unique"> 
       <xs:selector xpath="supportedMeasurementIntervals" /> 
       <xs:field xpath="." /> 
      </xs:unique> 
     </xs:element> 
     <xs:element name="defaultInterval" type="xs:int" minOccurs="1" maxOccurs="1" /> 
    </xs:sequence> 
</xs:complexType> 
<xs:element name="NoOfPeriod" type="xs:int" /> 
<xs:element name="isPeriodSupported" type="xs:boolean" /> 
<xs:element name="MType"> 
    <xs:complexType mixed="true"> 
     <xs:sequence minOccurs="0"> 
      <xs:element name="SIntervals" type="xyz:Intervals" minOccurs="0" maxOccurs="1" /> 
     </xs:sequence> 
     <xs:attribute name="id" type="xs:string" use="required" /> 
    </xs:complexType> 
</xs:element> 
<xs:group name="Child"> 
    <xs:sequence> 
     <xs:element name="SIntervals" type="xyz:Intervals" minOccurs="1" maxOccurs="1" /> 
     <xs:element ref="xyz:NoOfPeriod" minOccurs="1" maxOccurs="1" /> 
     <xs:element ref="xyz:isPeriodSupported" minOccurs="1" maxOccurs="1" /> 
    </xs:sequence> 
</xs:group> 
<xs:element name="Parent"> 
    <xs:complexType> 
     <xs:sequence> 
      <xs:element name="Child" minOccurs="1" maxOccurs="1"> 
       <xs:complexType> 
        <xs:group ref="xyz:Child" /> 
       </xs:complexType> 
      </xs:element> 
      <xs:element name="MTypes" minOccurs="1" maxOccurs="1"> 
       <xs:complexType> 
        <xs:sequence> 
         <xs:element ref="xyz:MType" maxOccurs="unbounded" /> 
        </xs:sequence> 
       </xs:complexType> 
      </xs:element> 
     </xs:sequence> 
    </xs:complexType> 
</xs:element> 
</xs:schema> 

XML

<?xml version="1.0" encoding="utf-8"?> 
<xyz:Parent xmlns:xyz="http://www.example.com/schema/public/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.example.com/schema/public/"> 
    <xyz:Child> 
     <xyz:SIntervals> 
      <xyz:interval>1111</xyz:interval> 
      <xyz:interval>1111</xyz:interval> 
      <xyz:interval>1111</xyz:interval> 
      <xyz:interval>9727</xyz:interval> 
      <xyz:defaultInterval>504</xyz:defaultInterval> 
     </xyz:SIntervals> 
     <xyz:NoOfPeriod>4804</xyz:NoOfPeriod> 
     <xyz:isPeriodSupported>1</xyz:isPeriodSupported> 
    </xyz:Child> 
    <xyz:MTypes> 
     <xyz:MType id="string" /> 
     <xyz:MType id="string" /> 
     <xyz:MType id="string"> 
      <xyz:SIntervals> 
       <xyz:interval>2222</xyz:interval> 
       <xyz:interval>2222</xyz:interval> 
       <xyz:defaultInterval>6631</xyz:defaultInterval> 
      </xyz:SIntervals> 
     </xyz:MType> 
     <xyz:MType id="string" /> 
    </xyz:MTypes> 
</xyz:Parent> 

回答

0

其實,你可以在你的Intervals定義改變的maxOccurs = 「1」 而不是 「無界」。

[.....] 
    <xs:complexType name="Intervals"> 
     <xs:sequence> 
       <xs:element name="interval" type="xs:int" maxOccurs="1"> 
    [.....] 

EDIT(後評論)

  1. 你必須把你定義的命名空間的XPath表達式。
  2. 如評論中所述,unique適用於element的範圍。你把它定義得太低了。

例如,你可以定義在Child元素的範圍唯一類似以下內容:

<xs:group name="Child"> 
<xs:sequence> 
    <xs:element name="SIntervals" type="xyz:Intervals" minOccurs="1" maxOccurs="1" > 
     <xs:unique name="uniqueInterval"> 
      <xs:selector xpath="xyz:interval" /> 
      <xs:field xpath="." /> 
     </xs:unique> 
    </xs:element> 
    <xs:element ref="xyz:NoOfPeriod" minOccurs="1" maxOccurs="1" /> 
    <xs:element ref="xyz:isPeriodSupported" minOccurs="1" maxOccurs="1" /> 
</xs:sequence> 

那麼你必須爲你的其他元素都以相同的方式(或者你重新設計定義)。

+0

我可以有多個區間定義,但不是它們的值相同。如果值重複,則xsd應該失敗。 – user1529282

+0

好的,我沒有正確地解決問題。獨特適用於元素的範圍,但在這裏,您想將其應用於complexType,這是不可能的,請參閱https://stackoverflow.com/questions/32826828/unique-constraint-on-a-complextype-in​​stead -of-一個元件。也許你將不得不重新設計你的xsd和類型的定義。 –