Skip to content

FixedCollectionSpecifier

These properties are available when mapping a fixed collection to a control. Typically the controls that make use of this definition display some sort of list to the user.


Items

  • type: array

All array items must be of type:

One of following conditions needs to be fulfilled.

Condition 1

  • type: object with following properties.
Property Type Required Default
DisplayValue string Optional
ReturnValue string Required

DisplayValue

The value to be displayed to the user. If not specified, the ReturnValue will be used.

ReturnValue

The value to return on selection.

Condition 2

  • string

This is both the Display and Return values.


Examples

[{
  "ReturnValue":"NotificationNumber",
  "DisplayValue":"Notification ID"
},
{
  "ReturnValue":"NotificationDescription",
  "DisplayValue":"Description"
},
{
  "ReturnValue":"Priority",
  "DisplayValue":"Priority"
},
{
  "ReturnValue":"RequiredEndDate",
  "DisplayValue":"Due Date"
}]

["OrderId", "BusinessArea", "OrderType"]