Skip to content

FixedCollection

This document describes the metadata properties 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:

Any following options needs to be fulfilled.

Option 1

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

DisplayValue

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

ReturnValue

The value to return on selection.

Option 2

  • string

Examples

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

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