bootstrap-vz/plugins/admin_user/manifest-schema.json
Anders Ingemann 80d1a7ffc0 Minor cleanup
2013-12-14 23:18:40 +01:00

21 lines
362 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Admin user plugin manifest",
"type": "object",
"properties": {
"plugins": {
"type": "object",
"properties": {
"admin_user": {
"type": "object",
"properties": {
"username": {
"type": "string"
}
},
"required": ["username"]
}
}
}
}
}