2.2.5.1 AttributeDataType

The AttributeDataType simple type specifies the subtype of a free-form attribute.

The following is the XML schema definition of the AttributeDataType simple type.

   <xs:simpleType name="AttributeDataType">
     <xs:restriction base="xs:string">
       <xs:enumeration value="NotSpecified" />
       <xs:enumeration value="Text" />
       <xs:enumeration value="Number" />
       <xs:enumeration value="DateTime" />
       <xs:enumeration value="Link">
         <xs:annotation>
           <xs:appinfo>
             <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">6</EnumerationValue>
           </xs:appinfo>
         </xs:annotation>
       </xs:enumeration>
     </xs:restriction>
   </xs:simpleType>

The values of the enumeration are described in the following table.

Value

Meaning

NotSpecified

The type of attribute is unspecified.

Text

The type is a free-form text attribute.

Number

The type is a number attribute.

DateTime

The type is a date and time attribute.

Link

The type is a link attribute.