XML Schema

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XML Schema相关的知识,希望对你有一定的参考价值。

最常用的类型是:

  • xs:string
  • xs:decimal
  • xs:integer
  • xs:boolean
  • xs:date
  • xs:time

1. 文件格式

<xs:element name="xxx", type="YYY"/>

 

// 法国

<xs:element name="color" type="xs:string" default="red"/>

<xs:element name="color" type="xs:string" fixed="red"/>

<xs:attribute name="xxx", type="yyy"/>

 

simpleType 元素定义一个简单类型

restriction

<xs:element name="age">

<xs:simpleType>
  <xs:restriction base="xs:integer">
    <xs:minInclusive value="0"/>
    <xs:maxInclusive value="120"/>
  </xs:restriction>
</xs:simpleType>

</xs:element> 

 

http://w3school.com.cn/schema/schema_schema.asp

以上是关于XML Schema的主要内容,如果未能解决你的问题,请参考以下文章

xml与xml schema命名空间学习

在 C# 中从 XML Schema 生成代码的限制是啥?

xml Eclipse模板(代码片段)检查参数并最终抛出IllegalArgumentException

需要示例代码片段帮助

Spring事务——使用XML Schema配置事务策略

如何将代码片段存储在 mongodb 中?