Some checks failed
AOC Guard CI / aoc-guard (push) Has been cancelled
AOC Guard CI / aoc-verify (push) Has been cancelled
Docs CI / lint-and-preview (push) Has been cancelled
Mirror Thin Bundle Sign & Verify / mirror-sign (push) Has been cancelled
api-governance / spectral-lint (push) Has been cancelled
28 lines
814 B
JSON
28 lines
814 B
JSON
{
|
|
"$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
|
|
}
|