[Table of Contents] [docx version]
Shared MLs Reference Material - Math
This simple type specifies that its values shall be a 128-bit globally unique identifier (GUID) value.
[Example: Consider the following content for a custom XML part properties part:
<w:datastoreItem w:itemID="{A67AC88A-A164-4ADE-8889-8826CE44DE6E}">
…
</w:datastoreItem>
The itemID attribute specifies that the ID associated with the parent custom XML part is A67AC88A-A164-4ADE-8889-8826CE44DE6E. end example]
This simple type's contents are a restriction of the XML Schema token datatype.
This simple type also specifies the following restrictions:
• This simple type's contents must match the following regular expression pattern: \{[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}\}.
Referenced By |
datastoreItem@itemID (§7.5.2.1) |
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_Guid">
<restriction base="xsd:token">
<pattern value="\{[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}\}"/>
</restriction>
</simpleType>