bootstrap-vz/plugins/root_password/manifest-schema.json
Anders Ingemann 3ee0c314d6 Remove some required properties from schemas.
They are still required, but it's not really possible run the schemas without these properties being there
2013-12-14 23:18:42 +01:00

21 lines
368 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Root password plugin manifest",
"type": "object",
"properties": {
"plugins": {
"type": "object",
"properties": {
"root_password": {
"type": "object",
"properties": {
"password": {
"type": "string"
}
},
"required": ["password"]
}
}
}
}
}