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