bootstrap-vz/bootstrapvz/plugins/admin_user/manifest-schema.json
2014-04-02 21:26:13 +02: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"]
}
}
}
}
}