summaryrefslogtreecommitdiffstats
path: root/schema/json/item.json
blob: 3784964bd0faf52f905e84e44574fe012ef7b9c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "$id": "https://lintian.debian.org/schema/json/lintian/item.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "description": "A Lintian item",
  "properties": {
    "index": {
      "description": "Index holding the item",
      "type": "string"
    },
    "name": {
      "description": "Path without a leading slash",
      "type": "string"
    }
  },
  "required": [
    "index",
    "name"
  ],
  "title": "Lintian Item",
  "type": "object"
}