XML Schema annotation 元素

  • 定义和使用

    annotation 元素是指定架构注释的顶级元素。 注释用作内联文档。
    父元素:任何元素
  • 语法

    <annotation
    id=ID
    any attributes
    >
    
    (appinfo|documentation)*
    
    </annotation>
    (*号声明该元素可以在注解元素内出现0次或多次)
  • 参数

    属性 描述
    id 可选的。 指定元素的唯一ID
    any attributes 可选的。 用非模式命名空间指定任何其他属性
  • 示例

    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:annotation>
      <xs:appinfo>W3Schools Note</xs:appinfo>
      <xs:documentation xml:lang="en">
      This Schema defines a W3Schools note!
      </xs:documentation>
    </xs:annotation>
    .
    .
    .
    </xs:schema>