The Alter Annotations schema definition is as follows.
-
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:sql="urn:schemas-microsoft-com:xml-sql"> <xs:element> <xs:complexType> <xs:sequence> <xs:element type="row" /> </xs:sequence> </xs:complexType> </xs:element> <xs:complexType name="row"> <xs:sequence> <xs:element name="ID" type="xs:unsignedLong" sql:field="ID" minOccurs="0" /> <xs:element name="Name" type="xs:string" sql:field="Name" minOccurs="0" /> <xs:element name="Value" type="xs:string" sql:field="Value" minOccurs="0" /> </xs:sequence> </xs:complexType> </xs:schema>
|
Element |
|---|
|
ID<101> |
|
Name |
|
Value |
The properties correspond to the Annotation object defined in section 2.2.5.11.