<完全なXMLスキーマリファレンス
定義と使用法
complexContentを要素が混在したコンテンツのみの要素を含む複合型の拡張や制限を定義します。
要素情報
- Parent elements: complexTypeの
構文
<complexContent
id=ID
mixed=true|false
any attributes
>
(annotation?,(restriction|extension))
</complexContent>
(?記号は要素がcomplexContentを要素内に0回または1回発生する可能性があることを宣言します)
属性 | 説明 |
---|---|
id | 任意。 要素の一意のIDを指定します。 |
mixed | 任意。 文字データは、このcomplexType要素の子要素の間に表示することが許可されているかどうかを指定します。 デフォルトはfalse |
any attributes | 任意。 非スキーマの名前空間を持つ任意の他の属性を指定します。 |
例1
次の例では、複合型、持っている"fullpersoninfo"別の複合型から派生し、 "personinfo" 3つの追加要素に継承された型を拡張することによって、 (address, city and country) :
<xs:element name="employee" type="fullpersoninfo"/>
<xs:complexType name="personinfo">
<xs:sequence>
<xs:element name="firstname" type="xs:string"/>
<xs:element name="lastname" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="fullpersoninfo">
<xs:complexContent>
<xs:extension base="personinfo">
<xs:sequence>
<xs:element name="address" type="xs:string"/>
<xs:element name="city" type="xs:string"/>
<xs:element name="country" type="xs:string"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
上記の例では"employee"含まれている必要があります要素、シーケンスでは、以下の要素: "firstname" 、 "lastname" 、 "address" 、 "city" 、および"country" 。
<完全なXMLスキーマリファレンス