2023-06-06 10:08:52 +09:30
|
|
|
{
|
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": false,
|
|
|
|
"required": [
|
|
|
|
"config"
|
|
|
|
],
|
|
|
|
"added": "v23.08",
|
|
|
|
"properties": {
|
|
|
|
"config": {
|
2024-02-02 15:17:43 +10:30
|
|
|
"type": "string",
|
|
|
|
"description": "name of the config variable which should be set to the value of the variable"
|
2023-06-06 10:08:52 +09:30
|
|
|
},
|
2024-02-02 15:17:43 +10:30
|
|
|
"val": {
|
|
|
|
"oneOf": [
|
|
|
|
{
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "boolean"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"description": "value of the config variable to be set or updated"
|
|
|
|
}
|
2023-06-06 10:08:52 +09:30
|
|
|
}
|
|
|
|
}
|