diff options
Diffstat (limited to '')
-rw-r--r-- | schema/json/item-pointer.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/schema/json/item-pointer.json b/schema/json/item-pointer.json new file mode 100644 index 0000000..f9b9168 --- /dev/null +++ b/schema/json/item-pointer.json @@ -0,0 +1,19 @@ +{ + "$id": "https://lintian.debian.org/schema/json/lintian/item-pointer.json", + "$schema": "http://json-schema.org/draft-07/schema#", + "description": "A Lintian pointer to an item", + "properties": { + "item": { + "$ref": "/schema/json/lintian/item.json" + }, + "line_position": { + "description": "Line number for indicated position", + "type": "integer" + } + }, + "required": [ + "item" + ], + "title": "Lintian Item Pointer", + "type": "object" +} |