{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "urn:awoooi:agent-replay-grading-report-v1", "title": "AWOOOI Agent Replay Grading Report (v1)", "type": "object", "required": [ "schema_version", "records", "graded_records", "missing_fixtures", "missing_expected_markers", "action_match_true", "action_match_false" ], "properties": { "schema_version": { "type": "string", "const": "agent_replay_grading_report_v1" }, "records": { "type": "integer", "minimum": 0 }, "graded_records": { "type": "integer", "minimum": 0 }, "missing_fixtures": { "type": "array", "items": { "type": "string" } }, "missing_expected_markers": { "type": "array", "items": { "type": "string" } }, "action_match_true": { "type": "integer", "minimum": 0 }, "action_match_false": { "type": "integer", "minimum": 0 } }, "additionalProperties": false }