blob: f9b9168b809ae4e2276021794db82e7b1ee393e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
"$id": "https://lintian.debian.org/schema/json/lintian/item-pointer.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "A Lintian pointer to an item",
"properties": {
"item": {
"$ref": "/schema/json/lintian/item.json"
},
"line_position": {
"description": "Line number for indicated position",
"type": "integer"
}
},
"required": [
"item"
],
"title": "Lintian Item Pointer",
"type": "object"
}
|