blob: df07cdf29cafed3e9e4be06c80df781763799bd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
"$id": "https://lintian.debian.org/schema/json/lintian/input-file.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "A file examined by Lintian",
"properties": {
"hints": {
"description": "Packaging hints for a given input",
"items": {
"$ref": "/schema/json/lintian/hint.json"
},
"type": "array"
},
"path": {
"description": "Path as given on the command line",
"type": "string"
}
},
"required": [
"path"
],
"title": "Lintian Input File",
"type": "object"
}
|