Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the configuration parameter. |
| runValue | string | The current running value. |
| configValue | string | The configured value that takes effect on restart. |
| defaultValue | string | The default value for this parameter. |
| minimumValue | string | The minimum allowed value. |
| maximumValue | string | The maximum allowed value. |
| requiresRestart | boolean | Whether changing this parameter requires a server restart. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ConfigParameter",
"title": "ConfigParameter",
"type": "object",
"description": "A single server configuration parameter.",
"properties": {
"name": {
"type": "string",
"description": "The name of the configuration parameter."
},
"runValue": {
"type": "string",
"description": "The current running value."
},
"configValue": {
"type": "string",
"description": "The configured value that takes effect on restart."
},
"defaultValue": {
"type": "string",
"description": "The default value for this parameter."
},
"minimumValue": {
"type": "string",
"description": "The minimum allowed value."
},
"maximumValue": {
"type": "string",
"description": "The maximum allowed value."
},
"requiresRestart": {
"type": "boolean",
"description": "Whether changing this parameter requires a server restart."
}
}
}