{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DatabaseRoleClone", "title": "DatabaseRoleClone", "type": "object", "properties": { "name": { "type": "string", "pattern": "^\"([^\"]|\"\")+\"|[a-zA-Z_][a-zA-Z0-9_$]*$", "description": "Name of the database role", "example": "Example Title" } }, "required": [ "name" ] }