summaryrefslogtreecommitdiffstats
path: root/schema/json/screen.json
blob: f05be9ec0cfdc45eb6bc725ee3e9955ce45056d1 (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
35
{
  "$id": "https://lintian.debian.org/schema/json/lintian/screen.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "description": "A Lintian screen declaration",
  "properties": {
    "advocates": {
      "description": "Advocates for exemption",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "name": {
      "description": "Screen name",
      "type": "string"
    },
    "reason": {
      "description": "Screen explanation",
      "type": "string"
    },
    "see_also": {
      "description": "Reference citations",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "name",
    "reason"
  ],
  "title": "Lintian Screen",
  "type": "object"
}