Files
awoooi/docs/schemas/agent_replay_pipeline_report_v1.schema.json
Your Name cfb866d055
Some checks failed
Ansible Lint / lint (push) Successful in 35s
CD Pipeline / tests (push) Failing after 13s
CD Pipeline / build-and-deploy (push) Has been skipped
CD Pipeline / post-deploy-checks (push) Has been skipped
Code Review / ai-code-review (push) Failing after 11s
feat(governance): add agent market automation surfaces
2026-06-04 21:50:55 +08:00

86 lines
1.7 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "urn:awoooi:agent-replay-pipeline-report-v1",
"title": "AWOOOI Agent Replay Pipeline Report (v1)",
"type": "object",
"required": [
"schema_version",
"candidate_id",
"inputs",
"results",
"baseline",
"contract_report",
"normalized_output",
"scorecard",
"contract_valid",
"input_records",
"result_records",
"normalized_records",
"graded_records",
"label_grading_applied",
"scorecard_written"
],
"properties": {
"schema_version": {
"type": "string",
"const": "agent_replay_pipeline_report_v1"
},
"candidate_id": {
"type": "string"
},
"inputs": {
"type": "string"
},
"results": {
"type": "string"
},
"baseline": {
"type": "string"
},
"contract_report": {
"type": "string"
},
"normalized_output": {
"type": "string"
},
"fixtures": {
"type": ["string", "null"]
},
"graded_output": {
"type": ["string", "null"]
},
"grading_report": {
"type": ["string", "null"]
},
"scorecard": {
"type": "string"
},
"contract_valid": {
"type": "boolean"
},
"input_records": {
"type": "integer",
"minimum": 0
},
"result_records": {
"type": "integer",
"minimum": 0
},
"normalized_records": {
"type": "integer",
"minimum": 0
},
"graded_records": {
"type": "integer",
"minimum": 0
},
"label_grading_applied": {
"type": "boolean"
},
"scorecard_written": {
"type": "boolean"
}
},
"additionalProperties": false
}