私のスキーマは次のとおりです。
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" attributeFormDefault="unqualified">
<xs:element name="Details">
<xs:complexType>
<xs:sequence>
<xs:element name="create_Date" type="xs:date" maxOccurs="1" />
</xs:sequence>
</xs:complexType>
XMLドキュメント:
<Details xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<create_date>2009-06-04</create_date>
</Details>
XMLドキュメントにError:true cvc-complex-type.2.4.aがあるため、例外が発生します:要素'create_date'で始まる無効なコンテンツが見つかりました。'{create_Date}'の1つが必要です。
誰か助けてくれませんか?