Files
awoooi/docs/schemas/agent_replay_fixture_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

42 lines
893 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "urn:awoooi:agent-replay-fixture-v1",
"title": "AWOOOI Agent Replay Fixture (v1)",
"type": "object",
"required": [
"schema_version",
"run_id",
"incident_id",
"incident_context",
"evaluation_labels",
"source_metadata"
],
"properties": {
"schema_version": {
"type": "string",
"const": "agent_replay_fixture_v1"
},
"run_id": {
"type": "string",
"minLength": 1
},
"incident_id": {
"type": "string",
"minLength": 1
},
"incident_context": {
"type": "object",
"additionalProperties": true
},
"evaluation_labels": {
"type": "object",
"additionalProperties": true
},
"source_metadata": {
"type": "object",
"additionalProperties": true
}
},
"additionalProperties": false
}