2020-11-24 15:15:51 +05:30
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"required": ["valid", "errors", "jobs", "warnings"],
|
|
|
|
"properties": {
|
|
|
|
"errors": {
|
|
|
|
"type": "array",
|
|
|
|
"items": { "type": "string" }
|
|
|
|
},
|
|
|
|
"warnings": {
|
|
|
|
"type": "array",
|
|
|
|
"items": { "type": "string" }
|
|
|
|
},
|
|
|
|
"valid": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"jobs": {
|
2021-06-08 01:23:25 +05:30
|
|
|
"type": ["array", "null"],
|
2020-11-24 15:15:51 +05:30
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"$ref": "lint_job_entity.json"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"additionalProperties": false
|
|
|
|
}
|