13 lines
864 B
JSON
13 lines
864 B
JSON
{
|
|
"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"]
|
|
}
|