13

会社で新しいデータ交換サービスを作成しています。core.xsd定義ファイルで定義されている既存のオブジェクトを拡張したいと思います。これが私がする必要があることの例です:

<xs:complexType name="parentType">
  <xs:sequence>
    <xs:element name="departmentName" type="core:DEPARTMENT_NAME" 
                minOccurs="0" maxOccurs="1" />    
  </xs:sequence>
</xs:complexType>

<xs:complexType name="childType">
  <xs:complexContent>
    <xs:extension base="parentType">
      <xs:sequence>
        <xs:element name="departmentName" 
                    type="core:DEPARTMENT_NAME" 
                    minOccurs="1" maxOccurs="1"/>
      </xs:sequence>
    </xs:extension>
  </xs:complexContent>
</xs:complexType>

これは完全に理にかなっていると思います。親要素をオーバーライドして必須にしたい。ただし、有効なxmlファイルはこれです。余分な部門名がどこにあるのか!?

<childType>
  <departmentName>HR</departmentName>
  <departmentName>IT</departmentName>
</childType>

XMLファイルが次のようになるようにこれを行うにはどうすればよいですか?

<childType>
  <departmentName>IT</departmentName>
</childType>

ありがとう、クレイグ

4

2 に答える 2

9

拡張の代わりに制限を使用する必要があります。これは、指定したシナリオの完全に有効なスキーマになります(名前空間を自由に使用して有効にしました)。

<?xml version="1.0" encoding="utf-8" ?>
<!-- XML Schema generated by QTAssistant/XSD Module (http://www.paschidev.com) -->
<xs:schema targetNamespace="http://tempuri.org/XMLSchema.xsd" xmlns="http://tempuri.org/XMLSchema.xsd" xmlns:core="http://tempuri.org/XMLSchema.xsd" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:complexType name="parentType">
        <xs:sequence>
            <xs:element name="departmentName" type="core:DEPARTMENT_NAME" minOccurs="0"/>
        </xs:sequence>
    </xs:complexType>

    <xs:complexType name="childType">
        <xs:complexContent>
            <xs:restriction base="parentType">
                <xs:sequence>
                    <xs:element name="departmentName" type="core:DEPARTMENT_NAME"/>
                </xs:sequence>
            </xs:restriction>
        </xs:complexContent>
    </xs:complexType>

    <xs:simpleType name="DEPARTMENT_NAME">
        <xs:restriction base="xs:string"/>
    </xs:simpleType>

    <xs:element name="childType" type="childType"/>
</xs:schema>
于 2012-12-19T19:23:18.203 に答える
0
if my scenario is as below
<xs:complexType name="parentType">
  <xs:sequence>
    <xs:element name="departmentName" type="core:DEPARTMENT_NAME" 
                minOccurs="1"/>    
  </xs:sequence>
</xs:complexType>

    <xs:complexType name="childType">
      <xs:complexContent>
        <xs:extension base="parentType">
          <xs:sequence>
            <xs:element name="departmentName" 
                    type="core:DEPARTMENT_NAME" 
                    minOccurs="0"/>
      </xs:sequence>
    </xs:extension>
  </xs:complexContent>
</xs:complexType>
than what will be the solution.
于 2021-07-12T12:27:55.973 に答える