SelectSetting Data Type

Model for select settings

Properties
name data type constraints description
datasourceId number required int Datasource ID
template string   Rendering template
options array of SelectOption   Selectable options of the datasource

Example

{
  "datasourceId" : 12345,
  "template" : "...",
  "options" : [ {
    "id" : 12345,
    "key" : "...",
    "value" : "..."
  }, {
    "id" : 12345,
    "key" : "...",
    "value" : "..."
  } ]
}