summaryrefslogtreecommitdiffstats
path: root/schema/json/mask.json
diff options
context:
space:
mode:
Diffstat (limited to 'schema/json/mask.json')
-rw-r--r--schema/json/mask.json21
1 files changed, 21 insertions, 0 deletions
diff --git a/schema/json/mask.json b/schema/json/mask.json
new file mode 100644
index 0000000..05fbd8e
--- /dev/null
+++ b/schema/json/mask.json
@@ -0,0 +1,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"
+}