开发者

Mixed Type XSD Validation help

I've been tasked with building an XSD to validate a given xml, my issue is that some of the XML elements are of the form

<ElementName description="i am an element">1234567</ElementName>

I need to build the XSD that validates t开发者_开发百科he Element 'value' not the attribute so with my increadibly limited experience in building XSDs (I've read the W3C tutorial) i tried this

<xs:element name ="ElementName" type="xs:int">
    <xs:complexType mixed="true">
         <xs:attribute name="description" type="xs:string"/>
    </xs:complexType>
</xs:element>

and lo and behold ... it doesn't work, it says:

"The Type attribute cannot be present with either simpleType or complexType"

i'm sure it's some thing stupid i've done but couldn't find an answer/misinterpreted answers elsewhere !

Thanks in advance


Mixed types are something different. You need a complex type with simple content:

<xs:element name="ElementName">
  <xs:complexType>
    <xs:simpleContent>
      <xs:extension base="xs:int">
        <xs:attribute name="description" type="xs:string" />
      </xs:extension>
    </xs:simpleContent>
  </xs:complexType>
</xs:element>

See also:

  • http://www.w3schools.com/schema/el_simpleContent.asp
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜