http://www.fatwire.com/schema/rest/1.0
simpleType attributeTypeEnum

Super Types
{http://www.w3.org/2001/XMLSchema}string
|
+--{http://www.fatwire.com/schema/rest/1.0}attributeTypeEnum (restriction)

Documentation
        Represents the type of an attribute.
        Attribute type defines how an attribute is stored in the backend system
        and processed in the API.
          URL - A binary object which is stored on the file system.
                Same as BLOB for Flex assets; for basic, URL attributes are
                defined by prefixing an attribute name with "url".
          BLOB - A binary object which is stored in the database.
          INT - An integer. Usually half the storage of LONG.
          LONG - A long integer; usually twice the storage size of INT.
          FLOAT - A floating-point value.
          MONEY - A representation of a currency amount, i.e. it has only two decimal digits.
          STRING - A text value.
          LARGE_TEXT - A CLOB.
          ASSET - A reference to an asset. Same as ASSETREFERENCE.
          ASSETREFERENCE - A reference to an asset. Same as ASSET.
          DATE - A timestamp (date and time combined).
      
Properties
This component is not nillable.

Model

('ONEOF' | 'URL' | 'BLOB' | 'INT' | 'LONG' | 'FLOAT' | 'MONEY' | 'STRING' | 'LARGE_TEXT' | 'ASSET' | 'ASSETREFERENCE' | 'DATE' | 'ARRAY' | 'WEBREFERENCE' | 'STRUCT' | 'LIST')

Source
<xs:simpleType name="attributeTypeEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="ONEOF"/>
<xs:enumeration value="URL"/>
<xs:enumeration value="BLOB"/>
<xs:enumeration value="INT"/>
<xs:enumeration value="LONG"/>
<xs:enumeration value="FLOAT"/>
<xs:enumeration value="MONEY"/>
<xs:enumeration value="STRING"/>
<xs:enumeration value="LARGE_TEXT"/>
<xs:enumeration value="ASSET"/>
<xs:enumeration value="ASSETREFERENCE"/>
<xs:enumeration value="DATE"/>
<xs:enumeration value="ARRAY"/>
<xs:enumeration value="WEBREFERENCE"/>
<xs:enumeration value="STRUCT"/>
<xs:enumeration value="LIST"/>
</xs:restriction>
</xs:simpleType>


Copyright \xA9 2013, Oracle and/or its affiliates. All Rights Reserved.