37 lines
799 B
JSON
37 lines
799 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "urn:awoooi:agent-replay-candidate-input-v1",
|
|
"title": "AWOOOI Agent Replay Candidate Input (v1)",
|
|
"type": "object",
|
|
"required": [
|
|
"schema_version",
|
|
"run_id",
|
|
"incident_id",
|
|
"incident_context",
|
|
"source_metadata"
|
|
],
|
|
"properties": {
|
|
"schema_version": {
|
|
"type": "string",
|
|
"const": "agent_replay_candidate_input_v1"
|
|
},
|
|
"run_id": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"incident_id": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
},
|
|
"incident_context": {
|
|
"type": "object",
|
|
"additionalProperties": true
|
|
},
|
|
"source_metadata": {
|
|
"type": "object",
|
|
"additionalProperties": true
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|