mirror of https://gitee.com/openkylin/lintian.git
24 lines
582 B
JSON
24 lines
582 B
JSON
{
|
|
"$id": "https://lintian.debian.org/schema/json/lintian/results.json",
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "Results of running Lintian in JSON format",
|
|
"properties": {
|
|
"groups": {
|
|
"description": "Groups examined",
|
|
"items": {
|
|
"$ref": "/schema/json/lintian/group.json"
|
|
},
|
|
"type": "array"
|
|
},
|
|
"lintian_version": {
|
|
"description": "Version of the Lintian executable",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"lintian_version"
|
|
],
|
|
"title": "Lintian Results",
|
|
"type": "object"
|
|
}
|