Add annotation to xml schema : annotation « XML Schema « XML






Add annotation to xml schema


File: Data.xml
<?xml version="1.0"?>
<fullName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:noNamespaceSchemaLocation="Schema.xsd">
  first last
</fullName>

File: Schema.xsd

<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <xsd:annotation>
    <xsd:documentation xml:lang="en-us">
      this is the documentation
      <a href="http://www.java2s.com">XML</a>
    </xsd:documentation>
  </xsd:annotation>
  <xsd:element name="fullName" type="xsd:string" />
</xsd:schema>

 








Related examples in the same category

1.English version of annotation documentation
2.Hyper link in annotation
3.appInfo and help-text in annotation