2.2.4.7 ST_FieldType

Target namespace: http://schemas.microsoft.com/office/accessservices/2009/11/application

Referenced by: CT_Parameter

A string ([XMLSCHEMA2/2] section 3.2.1) that specifies a data type. MUST be one of the following values.

Value

Meaning

Text

A string value up to 255 characters in length.

Number

An integer or a floating-point number.

Yes/No

A Boolean value.

Currency

A monetary value.

Date/Time

A date/time value.

The following W3C XML Schema ([XMLSCHEMA1/2] section 2.1) fragment specifies the contents of this simple type.

 <xsd:simpleType name="ST_FieldType">
   <xsd:restriction base="xsd:string">
     <xsd:enumeration value="Text" wbld:cname="Text"/>
     <xsd:enumeration value="Number" wbld:cname="Number"/>
     <xsd:enumeration value="Yes/No" wbld:cname="YesNo"/>
     <xsd:enumeration value="Currency" wbld:cname="Currency"/>
     <xsd:enumeration value="Date/Time" wbld:cname="DateTime"/>
   </xsd:restriction>
 </xsd:simpleType>

See section 5.4 for the full W3C XML Schema ([XMLSCHEMA1/2] section 2.1).