{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UsernamePasswordSignUpRequest", "title": "UsernamePasswordSignUpRequest", "type": "object", "required": [ "username", "password" ], "properties": { "username": { "type": "string", "minLength": 3, "maxLength": 20 }, "password": { "type": "string", "minLength": 8 } } }