2.1.6 Guid

The guid simple type is from namespace http://schemas.microsoft.com/2003/10/Serialization/.

The guid simple type represents a globally unique identifier (GUID).

The following is the XSD for the guid simple type.

 <xs:simpleType name="guid">
   <xs:restriction base="xs:string">
     <xs:pattern value="[\da-fA-F]{8}-[\da-fA-F]{4}-[\da-fA-F]{4}-
                        [\da-fA-F]{4}-[\da-fA-F]{12}"/>
   </xs:restriction>
 </xs:simpleType>