{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "advisory-ai-knobs@draft", "type": "object", "properties": { "knobs": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string", "minLength": 1 }, "default_value": { "type": "number" }, "min": { "type": "number" }, "max": { "type": "number" }, "step": { "type": "number" }, "description": { "type": "string" } }, "required": ["name", "default_value", "min", "max", "step", "description"], "additionalProperties": false }, "minItems": 1 }, "profile_hash": { "type": "string", "minLength": 1 } }, "required": ["knobs", "profile_hash"], "additionalProperties": false }