NODEDC_1C/docs/orchestration/schemas/domain_loop_coder_result.sc...

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"]
}
}
}