21 lines
459 B
JSON
21 lines
459 B
JSON
{
|
|
"type": "object",
|
|
"properties": {
|
|
"files": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"path": { "type": "string", "minLength": 1 },
|
|
"content": { "type": "string" }
|
|
},
|
|
"required": ["path", "content"],
|
|
"additionalProperties": false
|
|
}
|
|
},
|
|
"summary": { "type": "string" }
|
|
},
|
|
"required": ["files", "summary"],
|
|
"additionalProperties": false
|
|
}
|