Elementで定義されているComplexTypeを拡張するXSDスキーマを作成しようとしています。
Notepad ++ XMLToolsプラグインを使用して問題のトラブルシューティングを試みていますが、常に「スキーマファイルを解析できません」というメッセージが表示されます。エラーの説明がないので、ここにあるバリデーターを使用して詳細を取得しています。
http://www.xmlforasp.net/schemavalidator.aspx
これから得られる出力は次のとおりです。
ステータス: 未定義のcomplexType'http://test.org:BaseClass'は、複合型拡張のベースとして使用されます。
xs:schemaタグの:test名前空間を削除しようとしました。また、ClassHierarchy内の参照からtest:名前空間修飾子を削除しようとしました。また、要素定義に名前空間を追加しようとしましたが、取得できません。検証に合格するためのスキーマ。
どんな助けでも大歓迎です!ありがとう
<?xml version="1.0" encoding="utf-8"?>
<xs:schema
xmlns:test="http://test.org"
targetNamespace="http://test.org"
elementFormDefault="qualified"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="BaseClass">
<xs:complexType>
<!-- More referneces in here (Meaning this must be a complex type) but removed out to make a bit simpler -->
<xs:attribute name="test_name" type="xs:string" use="required"/>
<xs:attribute name="second_name" type="xs:string"/>
</xs:complexType>
</xs:element>
<xs:element name="SubClass">
<xs:complexType>
<xs:complexContent>
<xs:extension base="test:BaseClass">
<xs:attribute name="min_value" type="xs:float" default="0.0"/>
<xs:attribute name="max_value" type="xs:float" default="1.0"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="ClassHierarchy">
<xs:complexType>
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="test:BaseClass" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="test:SubClass" minOccurs="0" maxOccurs="unbounded"/>
</xs:choice>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
XMLファイルに含まれるもの:
<?xml version="1.0"?>
<ClassHierarchy
xmlns="http://test.org"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://test.org Test.xsd">
<BaseClass test_name="Test1" />
<SubClass test_name="Test2" min_value="0.0" max_value="1.0" />
</ClassHierarchy>