26 lines
667 B
JSON
26 lines
667 B
JSON
{
|
|
"$schema": "http://json-schema.org/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"sources": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"title": "Package sources",
|
|
"description": "The list of package source in search order",
|
|
"default": [ "git://github.com/mesosphere/universe.git" ],
|
|
"additionalItems": false,
|
|
"uniqueItems": true
|
|
},
|
|
"cache": {
|
|
"type": "string",
|
|
"title": "Package cache directory",
|
|
"description": "Path to the local package cache directory",
|
|
"default": "/tmp/cache"
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"required": ["sources", "cache"]
|
|
}
|