{ "$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." } } }