up
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
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
This commit is contained in:
27
docs/modules/policy/schemas/advisory-ai-knobs@draft.json
Normal file
27
docs/modules/policy/schemas/advisory-ai-knobs@draft.json
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"$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
|
||||
}
|
||||
Reference in New Issue
Block a user