@rline/json
Version:
JSON Schema compiler
28 lines • 713 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "DatabaseSchema",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "database name"
},
"username": {
"type": "string",
"description": "database username"
},
"password": {
"type": "string",
"description": "database password"
},
"type": {
"type": "string",
"description": "database type",
"enum": [
"postgres",
"better-sqlite3",
"mysql"
]
}
}
}