summaryrefslogtreecommitdiffstats
path: root/schema/json/group.json
blob: 8889f2656e4176c26f6e44cbfe9ed14107f8088d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
  "$id": "https://lintian.debian.org/schema/json/lintian/group.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "description": "A group of related input files examined by Lintian",
  "properties": {
    "group_id": {
      "description": "Lintian's distinctive ID for input files that belong together",
      "type": "string"
    },
    "input_files": {
      "description": "Files that were analyzed",
      "items": {
        "$ref": "/schema/json/lintian/input-file.json"
      },
      "type": "array"
    },
    "source_name": {
      "description": "Debian name of source distribution",
      "type": "string"
    },
    "source_version": {
      "description": "Full debianized version of source distribution",
      "type": "string"
    }
  },
  "required": [
    "group_id",
    "input_files",
    "source_name",
    "source_version"
  ],
  "title": "Lintian Group",
  "type": "object"
}