Centralize generic LLM schema assets

This commit is contained in:
2026-08-05 00:34:56 +00:00
parent f4c05c34ef
commit a57f83e30d
6 changed files with 1089 additions and 5 deletions

View File

@@ -0,0 +1,21 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "notarius.test_validator_decision",
"type": "object",
"additionalProperties": false,
"required": ["accepted", "reason"],
"properties": {
"accepted": {
"type": "boolean"
},
"reason": {
"type": "string",
"minLength": 1
},
"confidence": {
"type": "number",
"minimum": 0,
"maximum": 1
}
}
}