Request body for creating a new database.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateDatabaseRequest", "title": "CreateDatabaseRequest", "type": "object", "description": "Request body for creating a new database.", "required": [ "name" ], "properties": { "name": { "type": "string", "description": "Name for the new database." } } }