Skip to content

Configuration Item Multiselect Section

Sébastien Gallou edited this page Dec 4, 2023 · 3 revisions

MultiSelect sections

This type allows user to create a list of optional items. Each item can be enable/disable.

Non optionnal fields

Type descriptor

This field define the type as a multiSelect section

"type" : "multiSelectSection"

Content

The content section contains an item.

"Protocols": {
  "type": "multiSelectSection",
  "content": {
    "AE Blyss": {
      "type": "bool"
    }
  }
}

Ooptionnal fields

The enable/disable state of each item can be provided by the defautValue tag (default to false if not provided).

"defautValue" : true

Example

"Protocols": {
  "type": "multiSelectSection",
  "content": {
    "AE Blyss": {
      "type": "bool",
      "defaultValue": true
    }
  }
}
Clone this wiki locally