XML/XML Schema/NMTOKEN

Материал из Web эксперт
Перейти к: навигация, поиск

restriction base="xs:NMTOKEN"

File: Data.xml
<?xml version="1.0"?>
<data xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              xsi:schemaLocation="http://www.wbex.ru Schema.xsd"
              xmlns="http://www.wbex.ru"
              >

 1234567890
</data>
File: Schema.xsd
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
  targetNamespace="http://www.wbex.ru" xmlns="http://www.wbex.ru"
  elementFormDefault="qualified">
    <xs:element name="data" type="isbn"/>
  <xs:simpleType name="isbn">
    <xs:restriction base="xs:NMTOKEN">
      <xs:length value="10" />
    </xs:restriction>
  </xs:simpleType>
</xs:schema>



union Based on xs:NMTOKEN

File: Data.xml
<?xml version="1.0"?>
<data xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              xsi:schemaLocation="http://www.wbex.ru Schema.xsd"
              xmlns="http://www.wbex.ru"
              >

 1234567890
</data>
File: Schema.xsd
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
  targetNamespace="http://www.wbex.ru" xmlns="http://www.wbex.ru"
  elementFormDefault="qualified">

    <xs:element name="data" type="myIntegerUnion"/>
  <xs:simpleType name="myIntegerUnion">
    <xs:union memberTypes="xs:integer">
      <xs:simpleType>
        <xs:restriction base="xs:NMTOKEN">
          <xs:enumeration value="undefined" />
        </xs:restriction>
      </xs:simpleType>
    </xs:union>
  </xs:simpleType>
</xs:schema>