itemName Simple Type

The itemName simple type is a string representing all defined type names (for example, categories).

<xs:simpleType name="itemName">
    <xs:restriction
        base="string"
    >
        <xs:pattern
            value="(\p{L}|\p{N}|_)+"
         />
    </xs:restriction>
</xs:simpleType>

Patterns

The itemName simple type is a string that is restricted by the following pattern:

  • (\p{L}|\p{N}|_)+

 

 

Send comments about this topic to Microsoft

Build date: 10/15/2013