{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DatabaseUpdateRequest", "title": "DatabaseUpdateRequest", "type": "object", "description": "Request body for updating a database", "properties": { "database": { "type": "object", "properties": { "name": { "type": "string", "description": "The new database name" }, "owner_name": { "type": "string", "description": "The new owner role name" } } } } }