2.2.5.10 CustomFieldType
The CustomFieldType simple type is an enumeration that specifies the type of custom field, that is, whether the custom field is free-form or multivalued.
-
<xs:simpleType name="CustomFieldType"> <xs:restriction base="xsd:string"> <xs:enumeration value="None" /> <xs:enumeration value="Freeform" /> <xs:enumeration value="Multivalued" /> </xs:restriction> </xs:simpleType>
The following table specifies the valid values for this type.
|
Value |
Description |
|---|---|
|
None |
Unspecified or an invalid value. |
|
Freeform |
The custom field can hold any value and there are no restrictions on the valid values for the custom field. |
|
Multivalued |
The custom field consists of a fixed set of valid values and the custom field can take only a particular value that is present in this fixed set. |