summaryrefslogtreecommitdiffstats
path: root/schema/json/results.json
diff options
context:
space:
mode:
Diffstat (limited to 'schema/json/results.json')
-rw-r--r--schema/json/results.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/schema/json/results.json b/schema/json/results.json
new file mode 100644
index 0000000..5521719
--- /dev/null
+++ b/schema/json/results.json
@@ -0,0 +1,23 @@
+{
+ "$id": "https://lintian.debian.org/schema/json/lintian/results.json",
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "description": "Results of running Lintian in JSON format",
+ "properties": {
+ "groups": {
+ "description": "Groups examined",
+ "items": {
+ "$ref": "/schema/json/lintian/group.json"
+ },
+ "type": "array"
+ },
+ "lintian_version": {
+ "description": "Version of the Lintian executable",
+ "type": "string"
+ }
+ },
+ "required": [
+ "lintian_version"
+ ],
+ "title": "Lintian Results",
+ "type": "object"
+}