lintian/schema/json/item.json

22 lines
466 B
JSON

{
"$id": "https://lintian.debian.org/schema/json/lintian/item.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "A Lintian item",
"properties": {
"index": {
"description": "Index holding the item",
"type": "string"
},
"name": {
"description": "Path without a leading slash",
"type": "string"
}
},
"required": [
"index",
"name"
],
"title": "Lintian Item",
"type": "object"
}