need xsd for the following xml
<Author Title="Mr." BirthYear="1882">
Lalchand
</Author>
i wrote like this
<xs:element name="Author">
<xs:complexType>
<xs:attribute name="Title" type="xs:string"/>
<xs:attribute name="BirthYear" type="xs:string"/>
</xs:complexType>
</xs:element>
need help in writing the value of Author that is Lalchand