'xs:ID with only letters':
{|xml||
myElement
|}.
'xs:ID beginning with an underscore':
{|xml||
_myElement
|}.
'xs:ID containing a number':
{|xml||
myElement3
|}.
'xs:ID with a hyphen in-between':
{|xml||
my-element
|}.
'xs:ID with a period in-between':
{|xml||
my.element
|}.
'xs:ID with a colon in-between'(fail):
{|xml||
pre:myelement3
|}.
'xs:ID beginning with a colon'(fail):
{|xml||
:myElement
|}.
'xs:ID beginning with a number'(fail):
{|xml||
3rdElement
|}.
'xs:ID beginning with a hyphen'(fail):
{|xml||
-myelement
|}.
'xs:ID beginning with a period'(fail):
{|xml||
.myelement
|}.
'xs:ID with an empty value'(fail):
{|xml||
|}.