2.1.9 t:PropertyTagType Simple Type

The PropertyTagType simple type specifies the property tag.

 <xs:simpleType name="PropertyTagType">
   <xs:union
     memberTypes="xs:unsignedShort"
   >
     <xs:simpleType
       id="HexPropertyTagType"
     >
       <xs:restriction
         base="xs:string"
       >
         <xs:pattern
           value="(0x|0X)[0-9A-Fa-f]{1,4}"
          />
       </xs:restriction>
     </xs:simpleType>
   </xs:union>
 </xs:simpleType>
  

The following pattern is defined by the PropertyTagType simple type.

 (0x|0X)[0-9A-Fa-f]{1,4}

Note that the property tag can be represented in either hexadecimal or decimal form.