38 lines
693 B
JSON
38 lines
693 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Domain Loop Coder Result",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"status",
|
|
"summary",
|
|
"changed_files",
|
|
"notes",
|
|
"patch_summary_path"
|
|
],
|
|
"properties": {
|
|
"status": {
|
|
"type": "string",
|
|
"enum": ["patched", "no_changes", "blocked"]
|
|
},
|
|
"summary": {
|
|
"type": "string"
|
|
},
|
|
"changed_files": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"notes": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"patch_summary_path": {
|
|
"type": ["string", "null"]
|
|
}
|
|
}
|
|
}
|