スキーマを使用してXMLドキュメントを検証します。
問題の最も単純な形式は、2つのファイルに示されています。
<?xml version="1.0"?>
<recipe
xmlns:r="http://www.namespace.org/recipe">
<r:description>
<r:title>sugar cookies</r:title>
</r:description>
</recipe>
<?xml version="1.0" encoding="utf-8"?>
<xsd:schema
version="1.0"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:r="http://www.namespace.org/recipe">
<xsd:complexType name="recipe">
<xsd:choice>
<xsd:element name="description" type="descriptionType"
minOccurs="1" maxOccurs="1" />
</xsd:choice>
</xsd:complexType>
<xsd:complexType name="descriptionType">
<xsd:all>
<xsd:element name="title">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="5" />
<xsd:maxLength value="55" />
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:all>
</xsd:complexType>
</xsd:schema>
xmllint からの完全なエラーメッセージ:
file.xml:4:要素のレシピ:スキーマの妥当性エラー:要素 'recipe':検証ルートに一致するグローバル宣言はありません。
特定のスキーマを使用して特定のXMLドキュメントを正常に検証できるようにするための正しい構文(または不足しているスキーマ属性)は何ですか?
XMLインスタンスを変更する必要があります。あなたの現在のものは、名前空間にdescriptionと呼ばれるタイプがあると言いますhttp://www.namespace.org/recipe =。ただし、XSD定義では、その名前空間で公開される唯一のタイプは、recipeおよびdescriptionTypeと呼ばれます。
したがって、XSDスキーマでdescriptionと呼ばれるタイプを定義するか、recipeタイプを正しく参照するようにインスタンスを変更します。
<?xml version="1.0" encoding="utf-8"?>
<r:recipe
xmlns:r="http://www.namespace.org/recipe">
<description>
<title>sugar cookies</title>
</description>
</r:recipe>
[〜#〜] update [〜#〜]これは解決策の半分にすぎません-残りの半分はここにある@Aravindの答えです: https://stackoverflow.com/a/8426185/569662
グローバル要素の定義のみがルート要素として使用できます。スキーマには複合型のみがあるため、エラーが発生します。変更 <xsd:complexType name="recipe">
に
<xsd:element name="recipe">
<xsd:complexType>
<xsd:choice>
<xsd:element name="description" type="descriptionType"
minOccurs="1" maxOccurs="1" />
</xsd:choice>
</xsd:complexType>
</xsd:element>
これについてもっと読む here
私の練習では、2つのケースでNo matching global declaration available for the validation root
を取得しました。
<xsd:element name="recipe" .../>
が含まれていない場合は、@ aravind-r-yarramの回答で説明されています。XMLの<recipe/>
にxmlns
属性が含まれていない場合。そのような場合、xmlns
を追加すると役立ちます。
<recipe xmlns="http://www.namespace.org/recipe">
...
</recipe>