summaryrefslogtreecommitdiffstats
path: root/schema/json/tag.json
blob: b4c05f280d06a3c3b87b133cbecd6c6c82b3c79e (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
  "$id": "https://lintian.debian.org/schema/json/lintian/tag.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "description": "A Lintian tag declaration",
  "properties": {
    "check": {
      "description": "Issued by check",
      "type": "string"
    },
    "experimental": {
      "description": "Tag is experimental",
      "type": "boolean"
    },
    "explanation": {
      "description": "Explains condition and potential remedy",
      "type": "string"
    },
    "lintian_version": {
      "description": "Lintian version",
      "type": "string"
    },
    "name": {
      "description": "Tag name",
      "type": "string"
    },
    "name_spaced": {
      "description": "Has check-based name space",
      "type": "boolean"
    },
    "renamed_from": {
      "description": "Renamed from",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "screens": {
      "description": "Associated screens that can mask",
      "items": {
        "$ref": "/schema/json/lintian/screen.json"
      },
      "type": "array"
    },
    "see_also": {
      "description": "Reference citations",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "show_always": {
      "description": "Always show",
      "type": "boolean"
    },
    "visibility": {
      "description": "User-facing visibility",
      "type": "string"
    }
  },
  "required": [
    "explanation",
    "name",
    "visibility"
  ],
  "title": "Lintian Tag",
  "type": "object"
}