bootstrap-vz/bootstrapvz/plugins/ntp/manifest-schema.json

25 lines
423 B
JSON
Raw Normal View History

2014-03-28 17:58:45 -03:00
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "NTP plugin manifest",
"type": "object",
"properties": {
"plugins": {
"type": "object",
"properties": {
"ntp": {
"type": "object",
"properties": {
"servers": {
"type": "array",
"items": {"type": "string"},
"minItems": 1
}
}
}
},
"required": ["ntp"]
}
},
"required": ["plugins"]
}