😏
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"title": "Independent failure reproduction",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"status": {"type": "string", "enum": ["reproduced", "not_reproduced", "blocked"]},
|
||||
"minimal_reproduction": {"type": "string"},
|
||||
"expected": {"type": "string", "minLength": 1},
|
||||
"observed": {"type": "string", "minLength": 1},
|
||||
"commands": {
|
||||
"type": "array",
|
||||
"maxItems": 30,
|
||||
"items": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"command": {"type": "string", "minLength": 1},
|
||||
"exit_code": {"type": "integer"},
|
||||
"observation": {"type": "string", "minLength": 1}
|
||||
},
|
||||
"required": ["command", "exit_code", "observation"]
|
||||
}
|
||||
},
|
||||
"test_files": {"type": "array", "items": {"type": "string"}, "maxItems": 20, "uniqueItems": true},
|
||||
"hypotheses": {"type": "array", "items": {"type": "string"}, "maxItems": 20},
|
||||
"limitations": {"type": "array", "items": {"type": "string"}, "maxItems": 20}
|
||||
},
|
||||
"required": ["status", "minimal_reproduction", "expected", "observed", "commands", "test_files", "hypotheses", "limitations"],
|
||||
"allOf": [
|
||||
{"if": {"properties": {"status": {"const": "reproduced"}}, "required": ["status"]}, "then": {"properties": {"minimal_reproduction": {"minLength": 1}, "commands": {"minItems": 1}, "test_files": {"minItems": 1}}}},
|
||||
{"if": {"properties": {"status": {"const": "blocked"}}, "required": ["status"]}, "then": {"properties": {"limitations": {"minItems": 1}}}}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"title": "Adversarial fix verification",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"verdict": {"type": "string", "enum": ["pass", "fail", "blocked"]},
|
||||
"original_failure_fixed": {"type": "boolean"},
|
||||
"adjacent_cases_preserved": {"type": "boolean"},
|
||||
"commands": {
|
||||
"type": "array",
|
||||
"maxItems": 30,
|
||||
"items": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"command": {"type": "string", "minLength": 1},
|
||||
"exit_code": {"type": "integer"},
|
||||
"observation": {"type": "string", "minLength": 1}
|
||||
},
|
||||
"required": ["command", "exit_code", "observation"]
|
||||
}
|
||||
},
|
||||
"findings": {"type": "array", "items": {"type": "string"}, "maxItems": 30},
|
||||
"correction_targets": {"type": "array", "items": {"type": "string"}, "maxItems": 30},
|
||||
"blockers": {"type": "array", "items": {"type": "string"}, "maxItems": 20}
|
||||
},
|
||||
"required": ["verdict", "original_failure_fixed", "adjacent_cases_preserved", "commands", "findings", "correction_targets", "blockers"],
|
||||
"allOf": [
|
||||
{"if": {"properties": {"verdict": {"const": "pass"}}, "required": ["verdict"]}, "then": {"properties": {"original_failure_fixed": {"const": true}, "adjacent_cases_preserved": {"const": true}, "commands": {"minItems": 1}, "findings": {"maxItems": 0}, "blockers": {"maxItems": 0}}}},
|
||||
{"if": {"properties": {"verdict": {"const": "fail"}}, "required": ["verdict"]}, "then": {"properties": {"findings": {"minItems": 1}, "correction_targets": {"minItems": 1}}}},
|
||||
{"if": {"properties": {"verdict": {"const": "blocked"}}, "required": ["verdict"]}, "then": {"properties": {"blockers": {"minItems": 1}}}}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user