Skip to content

Configuration Item Integer

Sébastien Gallou edited this page Apr 18, 2017 · 3 revisions

Integer

This type describe an integer data.

Non optionnal fields

Type descriptor

This field define the type as int

"type" : "int"

Optionnal fields

Default Value

The defaultValue field permit to set the default value of the parameter it must be set between min and max allowed value if defined. If not set the default value is 0 rounded by max and min values.

"defaultValue" : "5"

Minimum and Maximum value

It define the min and max values that can be setted in the parameter.

"maximumValue" : "23",
"minimumValue" : "0"

Example

"offsetHour" : {
  "type" : "int",
  "name" : "hour offset",
  "description" : "used to make an offset on the time in hour",
  "defaultValue" : "0",
  "maximumValue" : "23",
  "minimumValue" : "0"
}
Clone this wiki locally