{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConnectionCustomScripts", "title": "ConnectionCustomScripts", "type": "object", "description": "A map of scripts used to integrate with a custom database.", "additionalProperties": true, "properties": { "login": { "type": "string", "minLength": 1 }, "get_user": { "type": "string", "minLength": 1 }, "delete": { "type": "string", "minLength": 1 }, "change_password": { "type": "string", "minLength": 1 }, "verify": { "type": "string", "minLength": 1 }, "create": { "type": "string", "minLength": 1 }, "change_username": { "type": "string", "minLength": 1 }, "change_email": { "type": "string", "minLength": 1 }, "change_phone_number": { "type": "string", "minLength": 1 } } }