SelectSetting Data Type

Model for select settings

Properties
name data type description
datasourceId number 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" : "..."
  } ]
}