XML Schema:包含仅包含文本的属性的元素?

我很难find这个。 我如何在XML模式文件中为XML定义一个元素,如下所示:

<option value="test">sometext</option> 

我不知道如何定义一个types为xs:string的元素,并且也有一个属性。

这是迄今为止我所得到的:

 <xs:element name="option"> <xs:complexType> <xs:attribute name="value" type="xs:string" /> </xs:complexType> </xs:element> 

尝试

  <xs:element name="option" type="AttrElement" /> <xs:complexType name="AttrElement"> <xs:simpleContent> <xs:extension base="xs:string"> <xs:attribute name="value" type="xs:string"> </xs:attribute> </xs:extension> </xs:simpleContent> </xs:complexType> 

…或内联等价物:

 <xs:element name="option"> <xs:complexType> <xs:simpleContent> <xs:extension base="xs:string"> <xs:attribute name="value" type="xs:string" /> </xs:extension> </xs:simpleContent> </xs:complexType> </xs:element> 

我知道这是不一样的,但它适用于我:

 <xsd:element name="option"> <xsd:complexType mixed="true"> <xsd:attribute name="value" use="optional" type="xsd:string"/> </xsd:complexType> </xsd:element>