14 lines
634 B
JSON
14 lines
634 B
JSON
|
|
{
|
||
|
|
"title": "Evidence-triggered difficult-reasoning escalation",
|
||
|
|
"type": "object",
|
||
|
|
"additionalProperties": false,
|
||
|
|
"properties": {
|
||
|
|
"trigger": {"type": "string", "minLength": 1},
|
||
|
|
"recommendation": {"type": "string", "minLength": 1},
|
||
|
|
"evidence": {"type": "array", "items": {"type": "string"}, "minItems": 1, "maxItems": 50},
|
||
|
|
"falsification_tests": {"type": "array", "items": {"type": "string"}, "minItems": 1, "maxItems": 30},
|
||
|
|
"uncertainties": {"type": "array", "items": {"type": "string"}, "maxItems": 30}
|
||
|
|
},
|
||
|
|
"required": ["trigger", "recommendation", "evidence", "falsification_tests", "uncertainties"]
|
||
|
|
}
|