blob: 05fbd8e7b2c837d86e3321c7836afdb9522ec59b (
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/mask.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "A Lintian mask",
"properties": {
"excuse": {
"description": "Automated excuse",
"type": "string"
},
"screen": {
"description": "Screen granting the exemption",
"type": "string"
}
},
"required": [
"excuse",
"screen"
],
"title": "Lintian Mask",
"type": "object"
}
|