UNPKG

@rline/json

Version:
28 lines 713 B
{ "$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" ] } } }