最新のWeb開発のチュートリアル
 

XMLスキーマ再定義エレメント


<完全なXMLスキーマリファレンス

定義と使用法

再定義要素は、外部スキーマから単純型および複合型、グループ、および属性グループを再定義します。

要素情報

  • Parent elements:スキーマ

構文

<redefine
id=ID
schemaLocation=anyURI
any attributes
>

(annotation|(simpleType|complexType|group|attributeGroup))*

</redefine>

属性 説明
id 任意。 要素の一意のIDを指定します。
schemaLocation 必須。 スキーマ文書の場所へのURI
any attributes 任意。 非スキーマの名前空間を持つ任意の他の属性を指定します。

例1

次の例では、Myschama1.xsdで指定された要素で、スキーマ、Myschama2.xsdを示しています。 PNAMEタイプが再定義されます。 このスキーマによると、PNAMEの種類によって制約要素がで終わらなければなりません"country"の要素:

Myschema1.xsd:

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:complexType name="pname">
  <xs:sequence>
    <xs:element name="firstname"/>
    <xs:element name="lastname"/>
  </xs:sequence>
</xs:complexType>

<xs:element name="customer" type="pname"/>

</xs:schema>

Myschema2.xsd:

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:redefine schemaLocation="Myschema1.xsd">
  <xs:complexType name="pname">
    <xs:complexContent>
      <xs:extension base="pname">
        <xs:sequence>
          <xs:element name="country"/>
        </xs:sequence>
      </xs:extension>
    </xs:complexContent>
  </xs:complexType>
</xs:redefine>

<xs:element name="author" type="pname"/>

</xs:schema>

<完全なXMLスキーマリファレンス