{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SignUpResponse", "title": "SignUpResponse", "type": "object", "properties": { "status": { "type": "string", "enum": [ "OK", "EMAIL_ALREADY_EXISTS_ERROR" ] }, "user": { "$ref": "#/components/schemas/User" } } }