This commit is contained in:
2026-08-24 08:11:59 -07:00
commit 53df0eed10
275 changed files with 133056 additions and 0 deletions
@@ -0,0 +1,12 @@
{
"title": "Bounded scout source dossier",
"type": "object",
"additionalProperties": false,
"properties": {
"question": {"type": "string", "minLength": 1},
"claims": {"type": "array", "maxItems": 50, "items": {"type": "object", "additionalProperties": false, "properties": {"claim": {"type": "string", "minLength": 1}, "source_url": {"type": "string", "format": "uri"}, "source_date": {"type": "string", "format": "date"}, "retrieved_at": {"type": "string", "format": "date-time"}, "evidence": {"type": "string", "minLength": 1}}, "required": ["claim", "source_url", "source_date", "retrieved_at", "evidence"]}},
"conflicts": {"type": "array", "items": {"type": "string"}, "maxItems": 30},
"limitations": {"type": "array", "items": {"type": "string"}, "maxItems": 30}
},
"required": ["question", "claims", "conflicts", "limitations"]
}