Don't allow target in include/exclude_packages

Fix indentation in schema
This commit is contained in:
Anders Ingemann 2014-05-08 22:20:48 +02:00
parent 1ee1e7b645
commit 07dc9ec2a9

View file

@ -15,16 +15,16 @@
"include_packages": { "include_packages": {
"type": "array", "type": "array",
"items": { "items": {
"type": "string", "type": "string",
"pattern": "^[^/]+(/[^/]+)?$" "pattern": "^[^/]+$"
}, },
"minItems": 1 "minItems": 1
}, },
"exclude_packages": { "exclude_packages": {
"type": "array", "type": "array",
"items": { "items": {
"type": "string", "type": "string",
"pattern": "^[^/]+(/[^/]+)?$" "pattern": "^[^/]+$"
}, },
"minItems": 1 "minItems": 1
} }