42 lines
814 B
JSON
42 lines
814 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "urn:awoooi:agent-replay-contract-report-v1",
|
|
"title": "AWOOOI Agent Replay Contract Report (v1)",
|
|
"type": "object",
|
|
"required": [
|
|
"schema_version",
|
|
"candidate_id",
|
|
"inputs",
|
|
"results",
|
|
"valid",
|
|
"failures"
|
|
],
|
|
"properties": {
|
|
"schema_version": {
|
|
"type": "string",
|
|
"const": "agent_replay_contract_report_v1"
|
|
},
|
|
"candidate_id": {
|
|
"type": ["string", "null"]
|
|
},
|
|
"inputs": {
|
|
"type": "integer",
|
|
"minimum": 0
|
|
},
|
|
"results": {
|
|
"type": "integer",
|
|
"minimum": 0
|
|
},
|
|
"valid": {
|
|
"type": "boolean"
|
|
},
|
|
"failures": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|