{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "urn:awoooi:agent-nemotron-replay-request-v1", "title": "AWOOOI NeMo/Nemotron Replay Request (v1)", "type": "object", "required": [ "schema_version", "run_id", "incident_id", "candidate_id", "candidate_role", "system_prompt", "user_prompt", "incident_context", "source_metadata", "response_contract", "metadata" ], "properties": { "schema_version": { "type": "string", "const": "agent_nemotron_replay_request_v1" }, "run_id": { "type": "string", "minLength": 1 }, "incident_id": { "type": "string", "minLength": 1 }, "candidate_id": { "type": "string", "const": "nemo_nemotron_fabric" }, "candidate_role": { "type": "string" }, "system_prompt": { "type": "string" }, "user_prompt": { "type": "string" }, "incident_context": { "type": "object", "additionalProperties": true }, "source_metadata": { "type": "object", "additionalProperties": true }, "response_contract": { "type": "object", "additionalProperties": true }, "metadata": { "type": "object", "additionalProperties": true } }, "additionalProperties": false }