summaryrefslogtreecommitdiffstats
path: root/schema/json/results.json
blob: 55217192479cb778e43b928c461667eab57784af (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/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"
}