lintian/schema/json/mask.json

22 lines
467 B
JSON

{
"$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"
}